diff --git a/Dockerfile b/Dockerfile index d8e206e..ca8081c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.12 AS builder +FROM python:3.13 AS builder RUN pip3 install poetry WORKDIR /src ADD . /src RUN poetry build -FROM python:3.12 +FROM python:3.13 WORKDIR /tmp COPY --from=builder /src/dist/*.whl . RUN pip3 install *.whl && rm *.whl