Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -18,9 +18,10 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-reco
|
|
18 |
build-essential \
|
19 |
pkg-config \
|
20 |
gnupg2 \
|
21 |
-
wget
|
|
|
22 |
|
23 |
-
RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc |
|
24 |
|
25 |
RUN apt-get update && apt install postgresql-16 postgresql-contrib-16
|
26 |
|
|
|
18 |
build-essential \
|
19 |
pkg-config \
|
20 |
gnupg2 \
|
21 |
+
wget \
|
22 |
+
curl
|
23 |
|
24 |
+
RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
|
25 |
|
26 |
RUN apt-get update && apt install postgresql-16 postgresql-contrib-16
|
27 |
|