Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -25,6 +25,8 @@ WORKDIR $HOME/app
|
|
25 |
|
26 |
# Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
|
27 |
RUN pip install --no-cache-dir --upgrade pip
|
|
|
|
|
28 |
|
29 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
30 |
COPY --chown=user . $HOME/app
|
|
|
25 |
|
26 |
# Try and run pip command after setting the user with `USER user` to avoid permission issues with Python
|
27 |
RUN pip install --no-cache-dir --upgrade pip
|
28 |
+
RUN pip install gdown
|
29 |
+
RUN gdown --id 0B7EVK8r0v71pZjFTYXZWM3FlRnM
|
30 |
|
31 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
32 |
COPY --chown=user . $HOME/app
|