Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 8 |
COPY requirements.txt .
|
| 9 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 10 |
RUN --mount=type=secret,id=session_file \
|
| 11 |
-
wget
|
| 12 |
|
| 13 |
COPY app.py .
|
| 14 |
#COPY session.session .
|
|
|
|
| 8 |
COPY requirements.txt .
|
| 9 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 10 |
RUN --mount=type=secret,id=session_file \
|
| 11 |
+
wget https://$(cat /run/secrets/session_file)
|
| 12 |
|
| 13 |
COPY app.py .
|
| 14 |
#COPY session.session .
|