Fix streamlit Docker build missing requirements-harvester.txt.

Copy both requirements files into the image so pip can resolve the -r include in requirements-app.txt.
This commit is contained in:
epistemophiliac 2026-06-19 12:21:30 -04:00
parent 627b2326df
commit adbbf64d41

View file

@ -12,7 +12,7 @@ RUN apt-get update \
&& apt-get install -y --no-install-recommends bash curl \
&& rm -rf /var/lib/apt/lists/*
COPY requirements-app.txt .
COPY requirements-harvester.txt requirements-app.txt .
RUN --mount=type=cache,target=/root/.cache/pip \
pip install -r requirements-app.txt