idated dockerfile
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 47s

This commit is contained in:
Karl 2025-07-14 14:33:01 +01:00
parent aa29eb27f8
commit 53780e7a2d

View File

@ -13,6 +13,8 @@ ENV PATH="/opt/venv/bin:$PATH"
# Copy requirements and install dependencies
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir requests==2.32.3
RUN pip install --no-cache-dir stem==1.8.2
RUN pip install --no-cache-dir -r requirements.txt
# ---- Final Stage ----