Huggsh commited on
Commit
014ae4f
·
verified ·
1 Parent(s): f163db5

Upload 3 files

Browse files
Files changed (3) hide show
  1. Dockerfile +5 -0
  2. app.py +1 -0
  3. requirements.txt +3 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM python:3.9
2
+ WORKDIR /app
3
+ COPY . .
4
+ RUN pip install -r requirements.txt
5
+ CMD ["streamlit", "run", "app.py"]
app.py ADDED
@@ -0,0 +1 @@
 
 
1
+ # Streamlit frontend entry point
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ streamlit
2
+ pandas
3
+ requests