Correcting path to environment file. RE:#1952

This commit is contained in:
James Douglass 2025-05-27 14:04:21 -07:00
parent 3e78b6c044
commit 44e9b5c986
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ COPY --from=build /invest/dist/*.whl /tmp/
ARG DEBIAN_GDAL_VERSION="3.6"
# The environment.yml file will be built during github actions.
COPY --chown=$MAMBA_USER:$MAMBA_USER environment.yml /tmp/environment.yml
COPY --chown=$MAMBA_USER:$MAMBA_USER docker/environment.yml /tmp/environment.yml
RUN micromamba install -y -n base -c conda-forge python==${PYTHON_VERSION} gdal=${DEBIAN_GDAL_VERSION} && \
micromamba install -y -n base -c conda-forge -f /tmp/environment.yml && \
micromamba clean --all --yes && \