From d37da73dee1fe729241fee49a030a7a3d7983cf3 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:53:12 -0400 Subject: [PATCH] fix: Fix Docker image name --- Dockerfile_static | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile_static b/Dockerfile_static index a6360e8..e3b117a 100644 --- a/Dockerfile_static +++ b/Dockerfile_static @@ -1,4 +1,4 @@ -FROM python:{{ cookiecutter.python_version }} as build-stage +FROM python:3.11 as build-stage COPY requirements.txt /tmp/requirements.txt RUN pip install --no-cache-dir -r /tmp/requirements.txt