DeMaking commited on
Commit
9624999
·
verified ·
1 Parent(s): 9a4aabc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -13,10 +13,10 @@ COPY requirements.txt .
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
15
  # Copy the app files
16
- COPY . .
17
 
18
  # Open the relevant port
19
  EXPOSE 7860
20
 
21
  # Run the app
22
- CMD python app.py
 
13
  RUN pip install --no-cache-dir -r requirements.txt
14
 
15
  # Copy the app files
16
+ COPY . /app
17
 
18
  # Open the relevant port
19
  EXPOSE 7860
20
 
21
  # Run the app
22
+ CMD python3 app.py