Correcting adding in the invest source.

RE:#1952
This commit is contained in:
James Douglass 2025-05-27 13:37:04 -07:00
parent 589f68ad37
commit e520c986d6
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
# Build the InVEST wheel in a separate container stage # Build the InVEST wheel in a separate container stage
FROM debian:12.11 AS build FROM debian:12.11 AS build
RUN apt update && apt install -y python3 python3-dev python3-pip python3-build build-essential git python3.11-venv libgdal-dev RUN apt update && apt install -y python3 python3-dev python3-pip python3-build build-essential git python3.11-venv libgdal-dev
ADD .. ADD .. /invest
RUN python3 -m build RUN cd /invest && python3 -m build
# Create the container for distribution that has runtime dependencies. # Create the container for distribution that has runtime dependencies.
FROM mambaorg/micromamba:2.1.1-debian12-slim FROM mambaorg/micromamba:2.1.1-debian12-slim