From 56290280d662e629d20d1f0ea2492a95977abe3a Mon Sep 17 00:00:00 2001 From: giles knap Date: Thu, 2 Oct 2025 11:52:54 +0000 Subject: [PATCH] add venv path to runtime and build --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0a8485c..5d2d089 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,6 +57,7 @@ COPY --from=build /python /python # Copy the environment, but not the source code COPY --from=build /app/.venv /app/.venv +ENV PATH=/app/.venv/bin:$PATH # change this entrypoint if it is not the same as the repo ENTRYPOINT ["fastcs-example"]