ppsingh commited on
Commit
7e98b0a
·
verified ·
1 Parent(s): cf258f8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -10,11 +10,11 @@ WORKDIR $HOME/app
10
 
11
 
12
  COPY --chown=user . $HOME/app
13
- ADD --chown=user ./.streamlit $HOME/app/.streamlit
14
  RUN chown user:user -R $HOME/app
15
 
16
- COPY ./requirements.txt /code/requirements.txt
17
- COPY ./packages.txt /code/packages.txt
18
 
19
 
20
  RUN apt-get update && xargs -r -a /code/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
 
10
 
11
 
12
  COPY --chown=user . $HOME/app
13
+ #ADD --chown=user ./.streamlit $HOME/app/.streamlit
14
  RUN chown user:user -R $HOME/app
15
 
16
+ COPY ./requirements.txt /app/requirements.txt
17
+ COPY ./packages.txt /app/packages.txt
18
 
19
 
20
  RUN apt-get update && xargs -r -a /code/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*