Bc-AI commited on
Commit
f1cf727
·
verified ·
1 Parent(s): ee3a6f0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -24,8 +24,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
24
  && rm -rf /var/lib/apt/lists/*
25
 
26
  # Install Python dependencies
27
- COPY requirements_worker.txt .
28
- RUN pip install --no-cache-dir -r requirements_worker.txt
29
 
30
  # Copy application
31
  COPY app.py .
 
24
  && rm -rf /var/lib/apt/lists/*
25
 
26
  # Install Python dependencies
27
+ COPY requirements.txt .
28
+ RUN pip install --no-cache-dir -r requirements.txt
29
 
30
  # Copy application
31
  COPY app.py .