tecuts commited on
Commit
a4df8ff
·
verified ·
1 Parent(s): 96b22ca

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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