moriire commited on
Commit
bd7585e
1 Parent(s): 207cc95

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -20,6 +20,9 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-reco
20
  gnupg2 \
21
  wget
22
 
 
 
 
23
 
24
  WORKDIR /app
25
 
 
20
  gnupg2 \
21
  wget
22
 
23
+ RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
24
+
25
+ RUN apt-get update && apt install postgresql-16 postgresql-contrib-16
26
 
27
  WORKDIR /app
28