cahya commited on
Commit
b0e7bde
1 Parent(s): 3ffcbac

add docker file

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ FROM python:3.8-slim-buster
2
+ COPY . /app
3
+ WORKDIR /app
4
+ RUN pip install -r requirements.txt
5
+ EXPOSE 8501
6
+ ENTRYPOINT ["streamlit","run"]
7
+ CMD ["app/app.py"]