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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pull official base image
FROM python:3.13-slim-bookworm AS builder
FROM python:3.14-slim-bookworm AS builder

# set work directory
WORKDIR /usr/src/app
Expand All @@ -25,7 +25,7 @@ RUN pip wheel --no-cache-dir --no-deps --wheel-dir /usr/src/app/wheels -r requir
#########

# pull official base image
FROM python:3.13-slim-bookworm
FROM python:3.14-slim-bookworm

# create the app user
RUN groupadd --system app && \
Expand Down
Loading