rufimelo commited on
Commit
da37d7b
·
verified ·
1 Parent(s): f0a0e41

Add Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM python:3.12-slim
2
+ WORKDIR /app
3
+ RUN pip install --no-cache-dir "streamlit>=1.32.0"
4
+ COPY app.py app.py
5
+ EXPOSE 8501
6
+ CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]