cackerman commited on
Commit
ae46891
·
verified ·
1 Parent(s): 75f591f

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+ WORKDIR /app
3
+ COPY tom_test.py /app/
4
+ COPY 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
10
+ CMD ["python", "tom_web_app.py"]