Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -55,6 +55,9 @@ ENV HOME=/home/user \
|
|
55 |
#RUN chmod -R 755 $HOME/app
|
56 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
57 |
COPY --chown=user . $HOME/app
|
|
|
|
|
|
|
58 |
RUN python -m pip install --upgrade pip
|
59 |
# Install requirements.txt
|
60 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
|
55 |
#RUN chmod -R 755 $HOME/app
|
56 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
57 |
COPY --chown=user . $HOME/app
|
58 |
+
|
59 |
+
COPY --chown=user . $HOME/.cache/huggingface
|
60 |
+
|
61 |
RUN python -m pip install --upgrade pip
|
62 |
# Install requirements.txt
|
63 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|