maulerr commited on
Commit
a5a2904
1 Parent(s): 685e373

Trying directly with python

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -8,7 +8,4 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
  COPY . .
10
 
11
- # Set the FLASK_APP environment variable
12
- ENV FLASK_APP=app
13
-
14
- CMD ["flask", "run", "--host", "0.0.0.0", "--port", "7860"]
 
8
 
9
  COPY . .
10
 
11
+ CMD ["python", "app.py", "--host", "0.0.0.0", "--port", "7860"]