Skip to content
Open
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 backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim as builder
FROM python:3.13-slim as builder
LABEL maintainer="André Felipe Dias <andref.dias@gmail.com>"

RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
Expand All @@ -19,7 +19,7 @@ RUN . /venv/bin/activate; \
$POETRY_HOME/bin/poetry install --only main --no-interaction


FROM python:3.11-slim as final
FROM python:3.13-slim as final

COPY --from=builder /venv /venv
ENV PATH=/venv/bin:${PATH}
Expand Down