nroggendorff commited on
Commit
20094de
·
verified ·
1 Parent(s): a40e2b5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -2,7 +2,7 @@ FROM python:latest
2
 
3
  WORKDIR /app
4
 
5
- COPY requirements.txt .
6
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
@@ -10,6 +10,5 @@ RUN mkdir /.cache && chmod 777 /.cache
10
 
11
  RUN mkdir /app/mayo && chmod 777 /app/mayo
12
 
13
- COPY app.py .
14
 
15
  CMD ["python3", "app.py"]
 
2
 
3
  WORKDIR /app
4
 
5
+ COPY . .
6
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
 
10
 
11
  RUN mkdir /app/mayo && chmod 777 /app/mayo
12
 
 
13
 
14
  CMD ["python3", "app.py"]