Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 /
|
17 |
-
COPY ./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/*
|