Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -23,7 +23,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-reco
|
|
| 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
|
| 27 |
|
| 28 |
WORKDIR /app
|
| 29 |
|
|
@@ -50,8 +50,8 @@ USER user
|
|
| 50 |
ENV HOME=/home/user \
|
| 51 |
PATH=/home/user/.local/bin:$PATH/app
|
| 52 |
|
| 53 |
-
RUN export MYSQLCLIENT_CFLAGS=`pkg-config mysqlclient --cflags`
|
| 54 |
-
RUN export MYSQLCLIENT_LDFLAGS=`pkg-config mysqlclient --libs`
|
| 55 |
# Set the working directory to the user's home directory
|
| 56 |
#WORKDIR $HOME/app
|
| 57 |
#RUN chmod -R 755 $HOME/app
|
|
|
|
| 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
|
| 29 |
|
|
|
|
| 50 |
ENV HOME=/home/user \
|
| 51 |
PATH=/home/user/.local/bin:$PATH/app
|
| 52 |
|
| 53 |
+
#RUN export MYSQLCLIENT_CFLAGS=`pkg-config mysqlclient --cflags`
|
| 54 |
+
#RUN export MYSQLCLIENT_LDFLAGS=`pkg-config mysqlclient --libs`
|
| 55 |
# Set the working directory to the user's home directory
|
| 56 |
#WORKDIR $HOME/app
|
| 57 |
#RUN chmod -R 755 $HOME/app
|