Skip to content

Commit

Permalink
Fixed docker build issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
pwei1018 committed Aug 19, 2024
1 parent a65b837 commit b2e5bbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auth-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.4-bullseye as development_build
FROM python:3.12.5-bullseye as development_build

ARG VCS_REF="missing"
ARG BUILD_DATE="missing"
Expand Down Expand Up @@ -73,7 +73,7 @@ RUN --mount=type=cache,target="$POETRY_CACHE_DIR" \
echo "$APP_ENV" \
&& poetry version \
# Install deps:
&& poetry run pip install -U pip \
&& poetry update \
&& poetry install \
$(if [ -z ${APP_ENV+x} ] | [ "$APP_ENV" = 'production' ]; then echo '--only main'; fi) \
--no-interaction --no-ansi
Expand Down

0 comments on commit b2e5bbe

Please sign in to comment.