Skip to content

Commit

Permalink
Revert python version bump (#5379)
Browse files Browse the repository at this point in the history
The move to python 3.14 breaks the docker build. The srsly package
doesn't have a compatible wheel with anything above 3.12 right now, and
it's using deprecated methods, so it can't be built by 3.14 yet. Because
of this, `docker build .` is broken on master.

Co-authored-by: Marc Vilanova <[email protected]>
  • Loading branch information
bashbreakpoint and mvilanova authored Oct 22, 2024
1 parent 968ad5c commit 63ae820
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13.0-slim-bullseye as sdist
FROM python:3.11.4-slim-bullseye as sdist

LABEL maintainer="[email protected]"
LABEL org.opencontainers.image.title="Dispatch PyPI Wheel"
Expand Down Expand Up @@ -56,7 +56,7 @@ RUN YARN_CACHE_FOLDER="$(mktemp -d)" \
&& mv /usr/src/dispatch/dist /dist

# This is the image to be run
FROM python:3.13.0-slim-bullseye
FROM python:3.11.4-slim-bullseye

LABEL maintainer="[email protected]"
LABEL org.opencontainers.image.title="Dispatch"
Expand Down

0 comments on commit 63ae820

Please sign in to comment.