From e770edfbcaacdbafa04f09e0fc38933712db2bb5 Mon Sep 17 00:00:00 2001 From: jenny kupzig <jkupzig@fuseki.com> Date: Wed, 11 Dec 2024 14:00:37 +0000 Subject: [PATCH] fix LegacyKeyValueFormat in Dockerfile-runtime --- Dockerfile-runtime | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile-runtime b/Dockerfile-runtime index 076ec3a3..96eb9546 100644 --- a/Dockerfile-runtime +++ b/Dockerfile-runtime @@ -15,8 +15,8 @@ COPY ./hdctl /hdctl RUN apt-get -y update && apt-get -y install libpq-dev gcc libsnappy-dev && apt-get clean && rm -rf /var/lib/apt/lists/* WORKDIR /app -ENV PIPT_PIP_INSTALL_ARGS "--no-cache-dir" -ENV PIPT_PIP_SYNC_PIP_ARGS "--no-cache-dir --no-deps" +ENV PIPT_PIP_INSTALL_ARGS="--no-cache-dir" +ENV PIPT_PIP_SYNC_PIP_ARGS="--no-cache-dir --no-deps" RUN ./pipt sync-system --prod ##### Intermediate stage with actual application content @@ -37,7 +37,7 @@ RUN chmod -R a+rw /mnt/autoimport FROM application_base AS prod RUN useradd -m hd_app USER hd_app -ENV PORT 8090 +ENV PORT=8090 EXPOSE 8090 CMD ["/app/start.sh"]