Skip to content

Commit

Permalink
Update dockerfile python version
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaslinhares committed May 8, 2024
1 parent 124e809 commit 1873f37
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.9-slim-bullseye as build-poetry
FROM python:3.10-slim-bullseye as build-poetry

WORKDIR /app

Expand All @@ -11,7 +11,7 @@ RUN python -m pip install -U poetry==1.1.15 \
&& poetry add -n --lock $(cat pip-requires.txt) \
&& poetry export --without-hashes --output requirements.txt

FROM python:3.9-slim-bullseye
FROM python:3.10-slim-bullseye

ARG COMPRESS_ENABLED
ARG BRANDING_ENABLED
Expand Down

0 comments on commit 1873f37

Please sign in to comment.