Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -10,7 +10,10 @@ ENV PATH="/home/user/.local/bin:$PATH"
|
|
10 |
|
11 |
WORKDIR /app
|
12 |
|
13 |
-
COPY cookies.txt cookies.txt
|
|
|
|
|
|
|
14 |
|
15 |
COPY --chown=user ./requirements.txt requirements.txt
|
16 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
|
10 |
|
11 |
WORKDIR /app
|
12 |
|
13 |
+
COPY ./cookies.txt /root/cookies.txt
|
14 |
+
|
15 |
+
# Create symbolic link for cookies file in the working directory
|
16 |
+
RUN ln -s /root/cookies.txt /app/cookies.txt
|
17 |
|
18 |
COPY --chown=user ./requirements.txt requirements.txt
|
19 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|