Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.7 AS base
FROM python:3.11 AS base

ENV POETRY_VERSION=1.8.2 \
POETRY_VIRTUALENVS_IN_PROJECT=true \
Expand Down Expand Up @@ -50,7 +50,7 @@ EXPOSE $PORT
CMD ["./bin/run-dev.sh"]

# Production image
FROM python:3.11.7-slim AS prod
FROM python:3.11-slim AS prod

ARG UID=10001
ARG GID=10001
Expand Down