Update Dockerfile
Browse files- Dockerfile +6 -6
Dockerfile
CHANGED
@@ -12,13 +12,13 @@ RUN apt-get update && apt-get install -y \
|
|
12 |
lsof \
|
13 |
software-properties-common
|
14 |
|
15 |
-
# Add the PostgreSQL repository
|
16 |
-
RUN apt-get install -y gnupg
|
17 |
-
RUN sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
18 |
-
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
|
19 |
|
20 |
-
# Install PostgreSQL 16 client
|
21 |
-
RUN apt-get update && apt-get install -y postgresql-client-16
|
22 |
|
23 |
COPY ./ /postgres/
|
24 |
|
|
|
12 |
lsof \
|
13 |
software-properties-common
|
14 |
|
15 |
+
# # Add the PostgreSQL repository
|
16 |
+
# RUN apt-get install -y gnupg
|
17 |
+
# RUN sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
18 |
+
# RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
|
19 |
|
20 |
+
# # Install PostgreSQL 16 client
|
21 |
+
# RUN apt-get update && apt-get install -y postgresql-client-16
|
22 |
|
23 |
COPY ./ /postgres/
|
24 |
|