Update Dockerfile
Browse filesDeleted line 24-26.
- Dockerfile +0 -4
Dockerfile
CHANGED
@@ -21,10 +21,6 @@ RUN pip install --no-cache-dir --upgrade pip
|
|
21 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
22 |
COPY --chown=user . $HOME/app
|
23 |
|
24 |
-
# Download a checkpoint
|
25 |
-
RUN mkdir content
|
26 |
-
ADD --chown=user https://<SOME_ASSET_URL> content/<SOME_ASSET_NAME>
|
27 |
-
|
28 |
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
|
29 |
|
30 |
ENV DEBIAN_FRONTEND=noninteractive PIP_EXISTS_ACTION=w PIP_PREFER_BINARY=1
|
|
|
21 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
22 |
COPY --chown=user . $HOME/app
|
23 |
|
|
|
|
|
|
|
|
|
24 |
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
|
25 |
|
26 |
ENV DEBIAN_FRONTEND=noninteractive PIP_EXISTS_ACTION=w PIP_PREFER_BINARY=1
|