Skip to content

Commit

Permalink
Switched Dockerfile to Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
kamikaze committed Jan 30, 2025
1 parent 2f3ef8e commit 930d865
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim-bookworm AS build-image
FROM python:3.13-slim-bookworm AS build-image

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand Down Expand Up @@ -34,7 +34,7 @@ COPY requirements.txt .
RUN python3 -m pip wheel --wheel-dir /build/wheels -r requirements.txt


FROM python:3.12-slim-bookworm AS app
FROM python:3.13-slim-bookworm AS app

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand Down

0 comments on commit 930d865

Please sign in to comment.