Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -7,6 +7,8 @@ FROM ${IMAGE}
|
|
7 |
# Re-declare the ARG after FROM
|
8 |
ARG IMAGE
|
9 |
|
|
|
|
|
10 |
RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
|
11 |
# Update and upgrade the existing packages
|
12 |
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
|
|
|
7 |
# Re-declare the ARG after FROM
|
8 |
ARG IMAGE
|
9 |
|
10 |
+
RUN apt-get curl
|
11 |
+
|
12 |
RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
|
13 |
# Update and upgrade the existing packages
|
14 |
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
|