Update Dockerfile

This commit is contained in:
McCloudS
2025-02-03 23:33:58 -07:00
committed by GitHub
parent f15376e144
commit bb2489ffe3

View File

@@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# Copy requirements and install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir --prefix=/install -r requirements.txt --extra-index-url https://download.pytorch.org/wheel/cpu
RUN pip install --no-cache-dir --prefix=/install -r requirements.txt
# Copy application code
COPY . .