chchung commited on
Commit
2651de3
·
verified ·
1 Parent(s): fec7628

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -12,6 +12,11 @@ COPY requirements.txt ./
12
 
13
  RUN pip3 install -r requirements.txt
14
 
 
 
 
 
 
15
  EXPOSE 8501
16
 
17
  HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
 
12
 
13
  RUN pip3 install -r requirements.txt
14
 
15
+ # Copy all application files
16
+ COPY *.py ./
17
+ COPY .streamlit .streamlit/
18
+ COPY static static/
19
+
20
  EXPOSE 8501
21
 
22
  HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health