cackerman commited on
Commit
498e1f7
·
verified ·
1 Parent(s): 720ecf7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,8 +2,8 @@ FROM python:3.11-slim
2
  WORKDIR /app
3
  COPY tom_test.py /app/
4
  COPY tom_web_app.py /app/
5
- COPY templates /app/templates
6
- COPY scenarios_*.json /app/
7
  RUN pip install --no-cache-dir flask==3.0.3
8
  ENV PORT=7860
9
  EXPOSE 7860
 
2
  WORKDIR /app
3
  COPY tom_test.py /app/
4
  COPY tom_web_app.py /app/
5
+ COPY index.html /app/templates/index.html
6
+ COPY scenarios*.json /app/
7
  RUN pip install --no-cache-dir flask==3.0.3
8
  ENV PORT=7860
9
  EXPOSE 7860