Update Dockerfile
Browse files- Dockerfile +4 -5
Dockerfile
CHANGED
@@ -8,22 +8,21 @@ FROM ${IMAGE}
|
|
8 |
ARG IMAGE
|
9 |
|
10 |
|
11 |
-
RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
|
12 |
# Update and upgrade the existing packages
|
13 |
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
|
14 |
python3 \
|
15 |
python3-pip \
|
16 |
ninja-build \
|
17 |
-
libmariadb-dev-compat \
|
18 |
-
libmariadb-dev \
|
19 |
python3-psycopg2 \
|
20 |
build-essential \
|
21 |
pkg-config \
|
22 |
gnupg2 \
|
23 |
wget \
|
24 |
-
|
|
|
25 |
|
26 |
-
RUN apt-get update && apt-get install postgresql-16 postgresql-contrib-16 -y
|
27 |
|
28 |
WORKDIR /app
|
29 |
|
|
|
8 |
ARG IMAGE
|
9 |
|
10 |
|
11 |
+
#RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
|
12 |
# Update and upgrade the existing packages
|
13 |
RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
|
14 |
python3 \
|
15 |
python3-pip \
|
16 |
ninja-build \
|
|
|
|
|
17 |
python3-psycopg2 \
|
18 |
build-essential \
|
19 |
pkg-config \
|
20 |
gnupg2 \
|
21 |
wget \
|
22 |
+
postgresql-16 \
|
23 |
+
postgresql-contrib-16
|
24 |
|
25 |
+
#RUN apt-get update && apt-get install postgresql-16 postgresql-contrib-16 -y
|
26 |
|
27 |
WORKDIR /app
|
28 |
|