ahmetalper commited on
Commit
e2eb91d
·
verified ·
1 Parent(s): 7e408b9

Update Dockerfile

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