Signe22 commited on
Commit
b4ab30e
·
verified ·
1 Parent(s): d961738

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -2,10 +2,9 @@ FROM python:3.11-slim
2
 
3
  WORKDIR /app
4
 
5
- COPY api/requirements.txt /app/requirements.txt
6
  RUN pip install --no-cache-dir -r /app/requirements.txt
7
 
8
- COPY api /app/api
9
  COPY data /app/data
10
 
11
  EXPOSE 7860
 
2
 
3
  WORKDIR /app
4
 
5
+ COPY requirements.txt /app/requirements.txt
6
  RUN pip install --no-cache-dir -r /app/requirements.txt
7
 
 
8
  COPY data /app/data
9
 
10
  EXPOSE 7860