moriire commited on
Commit
6514bbc
1 Parent(s): fc35250

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -7,6 +7,7 @@ FROM ${IMAGE}
7
  # Re-declare the ARG after FROM
8
  ARG IMAGE
9
 
 
10
  # Update and upgrade the existing packages
11
  RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
12
  python3 \
@@ -21,8 +22,6 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-reco
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-get install postgresql-16 postgresql-contrib-16 -y
27
 
28
  WORKDIR /app
 
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 \
13
  python3 \
 
22
  wget \
23
  curl
24
 
 
 
25
  RUN apt-get update && apt-get install postgresql-16 postgresql-contrib-16 -y
26
 
27
  WORKDIR /app