Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -18,6 +18,10 @@ RUN pip install --no-cache-dir --upgrade pip
|
|
| 18 |
|
| 19 |
COPY --chown=user . $HOME/app
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
# WORKDIR /app
|
| 22 |
|
| 23 |
RUN apt-get update && apt-get install -y \
|
|
|
|
| 18 |
|
| 19 |
COPY --chown=user . $HOME/app
|
| 20 |
|
| 21 |
+
# Download a checkpoint
|
| 22 |
+
RUN mkdir content
|
| 23 |
+
ADD --chown=user https://<SOME_ASSET_URL> content/<SOME_ASSET_NAME>
|
| 24 |
+
|
| 25 |
# WORKDIR /app
|
| 26 |
|
| 27 |
RUN apt-get update && apt-get install -y \
|