makkzone commited on
Commit
30f7a85
·
verified ·
1 Parent(s): c43c0bb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -16,8 +16,9 @@ WORKDIR $HOME/app
16
  COPY --chown=user requirements.txt .
17
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
18
 
19
- # Copy the app code
20
  COPY --chown=user . .
 
21
 
22
  # Expose Streamlit port
23
  EXPOSE 8501
 
16
  COPY --chown=user requirements.txt .
17
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
18
 
19
+ # Copy the app code and startup script
20
  COPY --chown=user . .
21
+ RUN chmod +x start.sh
22
 
23
  # Expose Streamlit port
24
  EXPOSE 8501