Skip to content

Commit

Permalink
Update Dockerfile base version, Poetry.
Browse files Browse the repository at this point in the history
  • Loading branch information
ropable committed Dec 9, 2024
1 parent 00efbf2 commit 17ac056
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
# Prepare the base environment.
FROM python:3.12.6-alpine AS builder_base
FROM python:3.12.8-alpine AS builder_base
LABEL [email protected]
LABEL org.opencontainers.image.source=https://github.com/dbca-wa/healthcheck

Expand All @@ -20,7 +20,7 @@ RUN addgroup -g ${GID} appuser \
FROM builder_base AS python_libs_healthcheck
WORKDIR /app
COPY poetry.lock pyproject.toml ./
ARG POETRY_VERSION=1.8.3
ARG POETRY_VERSION=1.8.5
RUN pip install --no-cache-dir --root-user-action=ignore poetry==${POETRY_VERSION} \
&& poetry config virtualenvs.create false \
&& poetry install --no-interaction --no-ansi --only main
Expand Down

0 comments on commit 17ac056

Please sign in to comment.