Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -8,7 +8,6 @@ ENV HOME=/home/user \
|
|
| 8 |
WORKDIR $HOME/app
|
| 9 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 10 |
COPY --chown=user . $HOME/app
|
| 11 |
-
ADD --chown=user ./.zeno_cache $HOME/app/.zeno_cache
|
| 12 |
RUN chown user:user -R $HOME/app
|
| 13 |
|
| 14 |
COPY ./requirements.txt /code/requirements.txt
|
|
@@ -16,4 +15,5 @@ COPY ./requirements.txt /code/requirements.txt
|
|
| 16 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 17 |
|
| 18 |
|
| 19 |
-
CMD ["zeno", "config.toml"]
|
|
|
|
|
|
| 8 |
WORKDIR $HOME/app
|
| 9 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 10 |
COPY --chown=user . $HOME/app
|
|
|
|
| 11 |
RUN chown user:user -R $HOME/app
|
| 12 |
|
| 13 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
|
| 15 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 16 |
|
| 17 |
|
| 18 |
+
CMD ["zeno", "config.toml"]
|
| 19 |
+
ADD --chown=user ./.zeno_cache $HOME/app/.zeno_cache
|