Skip to content

Commit

Permalink
fix LegacyKeyValueFormat in Dockerfile-runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
jennykupzig committed Dec 11, 2024
1 parent 54d1ea7 commit e770edf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile-runtime
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"]

Expand Down

0 comments on commit e770edf

Please sign in to comment.