enricorampazzo commited on
Commit
1f51a3e
1 Parent(s): 89187ff

Create Dockerfile

Browse files

Added dockerfile for docker space

Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM python:3.10
2
+ RUN python -m venv venv
3
+ RUN source venv/bin/activate
4
+ RUN pip install -r requirements.txt
5
+ ENTRYPOINT streamlit app.py