vincentcps commited on
Commit
58b9fbc
·
verified ·
1 Parent(s): b83ed86

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -5,5 +5,6 @@ ENV PORT 7860
5
  WORKDIR /app
6
  COPY requirements.txt .
7
  RUN pip install --no-cache-dir -r requirements.txt
 
8
  COPY app.py .
9
  CMD exec gunicorn --bind 0.0.0.0:$PORT --workers 1 --timeout 120 app:app
 
5
  WORKDIR /app
6
  COPY requirements.txt .
7
  RUN pip install --no-cache-dir -r requirements.txt
8
+ COPY index.html .
9
  COPY app.py .
10
  CMD exec gunicorn --bind 0.0.0.0:$PORT --workers 1 --timeout 120 app:app