faridans27 commited on
Commit
4f24bda
1 Parent(s): cc6c471

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -6
Dockerfile CHANGED
@@ -11,14 +11,15 @@ RUN apt update && \
11
  ca-certificates \
12
  python3 \
13
  python3-pip && \
14
- libglib2.0-0=2.50.3-2 \
15
- libnss3=2:3.26.2-1.1+deb9u \
16
- libgconf-2-4=3.2.6-4+b1 \
17
- libfontconfig1=2.11.0-6.7+b1 \
18
- chromium-browser
 
19
  rm -rf /var/lib/apt/lists
20
 
21
- RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
22
 
23
  WORKDIR /code
24
 
 
11
  ca-certificates \
12
  python3 \
13
  python3-pip && \
14
+ libglib2.0-0 \
15
+ libnss3 \
16
+ libgconf-2-4 \
17
+ libfontconfig1 \
18
+ chromium-browser \
19
+ chromium-chromedriver
20
  rm -rf /var/lib/apt/lists
21
 
22
+ RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 libnss -y
23
 
24
  WORKDIR /code
25