KGNINJA commited on
Commit
90f9095
·
verified ·
1 Parent(s): 8b4b273

Update Dockerfile

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