Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
|
@@ -10,14 +10,16 @@ USER user
|
|
| 10 |
WORKDIR $HOME/app
|
| 11 |
|
| 12 |
RUN pip install --no-cache-dir apscheduler
|
| 13 |
-
RUN pip install --no-cache-dir fastapi
|
| 14 |
-
RUN pip install --no-cache-dir pillow
|
| 15 |
RUN pip install --no-cache-dir requests
|
| 16 |
RUN pip install --no-cache-dir uvicorn
|
|
|
|
|
|
|
|
|
|
| 17 |
RUN pip install --no-cache-dir gdown
|
| 18 |
|
| 19 |
RUN --mount=type=secret,id=URL,mode=0444,required=true \
|
| 20 |
|
|
|
|
| 21 |
git clone $(cat /run/secrets/URL) .
|
| 22 |
|
| 23 |
COPY --chown=user . $HOME/app
|
|
|
|
| 10 |
WORKDIR $HOME/app
|
| 11 |
|
| 12 |
RUN pip install --no-cache-dir apscheduler
|
|
|
|
|
|
|
| 13 |
RUN pip install --no-cache-dir requests
|
| 14 |
RUN pip install --no-cache-dir uvicorn
|
| 15 |
+
RUN pip install --no-cache-dir fastapi
|
| 16 |
+
RUN pip install --no-cache-dir pillow
|
| 17 |
+
RUN pip install --no-cache-dir jinja2
|
| 18 |
RUN pip install --no-cache-dir gdown
|
| 19 |
|
| 20 |
RUN --mount=type=secret,id=URL,mode=0444,required=true \
|
| 21 |
|
| 22 |
+
|
| 23 |
git clone $(cat /run/secrets/URL) .
|
| 24 |
|
| 25 |
COPY --chown=user . $HOME/app
|