ugaray96 commited on
Commit
6af559f
1 Parent(s): c11f999

Adds custom Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+ COPY . /app
3
+ WORKDIR /app
4
+ RUN apt-get update && xargs -r -a packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
5
+ RUN pip3 install --no-cache-dir -r requirements.txt
6
+ RUN pip3 install --no-cache-dir streamlit==1.10.0
7
+ EXPOSE 8501
8
+ CMD streamlit run app.py