Skip to content

Commit 00f2903

Browse files
committed
Fix python version in Dockerfile to 3.12-slim
1 parent 6e40c18 commit 00f2903

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12.0-slim as build-poetry
1+
FROM python:3.12-slim as build-poetry
22

33
WORKDIR /app
44

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

11-
FROM python:3.12.0-slim-buster AS base
11+
FROM python:3.12-slim AS base
1212

1313
ARG APP_UID=1000
1414
ARG APP_GID=1000

0 commit comments

Comments
 (0)