From 495ea3239a83d901651c3cbb2e34dbc803e0ac43 Mon Sep 17 00:00:00 2001 From: James Douglass Date: Thu, 19 Oct 2023 11:17:01 -0700 Subject: [PATCH] Dockerfile syntaxerror RE:#1431 --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index f953be830d..874dc7c058 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,7 +7,7 @@ RUN python3 -m build && pwd # Create the container for distribution that has runtime dependencies. FROM mambaorg/micromamba:1.5.0-bookworm-slim -COPY --from build /dist/*.whl /tmp/ +COPY --from=build /dist/*.whl /tmp/ # The environment.yml file will be built during github actions. COPY --chown=$MAMBA_USER:$MAMBA_USER environment.yml /tmp/environment.yml