From 3af76de09dfee37fabffdaf64e8e5360139654b9 Mon Sep 17 00:00:00 2001 From: lukken <lukken@astron.nl> Date: Mon, 28 Apr 2025 14:49:28 +0200 Subject: [PATCH] Dynamically select the binary wheel to install --- .../docker/{{cookiecutter.project_slug}}/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/docker/{{cookiecutter.project_slug}}/Dockerfile b/{{cookiecutter.project_slug}}/docker/{{cookiecutter.project_slug}}/Dockerfile index 9e9cb23..f50ac74 100644 --- a/{{cookiecutter.project_slug}}/docker/{{cookiecutter.project_slug}}/Dockerfile +++ b/{{cookiecutter.project_slug}}/docker/{{cookiecutter.project_slug}}/Dockerfile @@ -25,4 +25,4 @@ FROM build_${BUILD_ENV} AS build # Copy build stage files into final python slim image and install FROM python:3.13-slim COPY --from=build /work/dist /dist -RUN python -m pip install /dist/*.whl +RUN python -m pip install /dist/*cp313*many*$(uname -m).whl -- GitLab