Persano commited on
Commit
ba39547
·
verified ·
1 Parent(s): bfe733a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -1,11 +1,15 @@
1
- FROM python:3.10-slim
 
2
 
3
  WORKDIR /app
4
- COPY . /app
5
 
 
6
  RUN pip install -r requirements.txt
7
 
 
 
8
  EXPOSE 7860
 
9
  CMD ["python", "app.py"]
10
 
11
 
 
1
+ # Dockerfile
2
+ FROM python:3.11-slim
3
 
4
  WORKDIR /app
 
5
 
6
+ COPY requirements.txt requirements.txt
7
  RUN pip install -r requirements.txt
8
 
9
+ COPY . .
10
+
11
  EXPOSE 7860
12
+
13
  CMD ["python", "app.py"]
14
 
15