diff --git a/{{cookiecutter.project_slug}}/Dockerfile b/{{cookiecutter.project_slug}}/Dockerfile index 23e9f7f..ecd7eae 100644 --- a/{{cookiecutter.project_slug}}/Dockerfile +++ b/{{cookiecutter.project_slug}}/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10.6 as builder +FROM python:3.13.0rc2 as builder ENV PATH="/root/.local/bin:${PATH}" @@ -13,7 +13,7 @@ WORKDIR /venv/ RUN poetry install -FROM python:3.10.6 +FROM python:3.13.0rc2 LABEL version="{{cookiecutter.version}}" LABEL author="{{cookiecutter.author}}"