Update Dockerfile

This commit is contained in:
SpudGunMan
2025-10-23 15:57:34 -07:00
parent 54837884a7
commit d940cdf534
+1 -1
View File
@@ -17,7 +17,7 @@ WORKDIR /app
# Install dependencies first for better caching
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
# Copy the rest of the application
COPY . /app