Skip to content

Commit

Permalink
Merge pull request #189 from Ilhasoft/fix/python-version-dockerfile
Browse files Browse the repository at this point in the history
Fix python version in Dockerfile to 3.12-slim
  • Loading branch information
lucaslinhares authored Nov 11, 2024
2 parents 6e40c18 + 00f2903 commit 8985207
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.0-slim as build-poetry
FROM python:3.12-slim as build-poetry

WORKDIR /app

Expand All @@ -8,7 +8,7 @@ COPY ./poetry.lock .
RUN python -m pip install -U poetry
RUN poetry export --without-hashes --output requirements.txt

FROM python:3.12.0-slim-buster AS base
FROM python:3.12-slim AS base

ARG APP_UID=1000
ARG APP_GID=1000
Expand Down

0 comments on commit 8985207

Please sign in to comment.