@@ -6,6 +6,8 @@ FROM ${JITSI_REPO}/base-java
6
6
ARG CHROME_RELEASE=78.0.3904.97
7
7
ARG CHROMEDRIVER_MAJOR_RELEASE=78
8
8
9
+ SHELL ["/bin/bash" , "-o" , "pipefail" , "-c" ]
10
+
9
11
RUN \
10
12
apt-dpkg-wrap apt-get update \
11
13
&& apt-dpkg-wrap apt-get install -y jibri libgl1-mesa-dri \
@@ -22,17 +24,17 @@ RUN \
22
24
23
25
RUN \
24
26
[ "${CHROME_RELEASE}" != "latest" ] \
25
- && curl -4so /tmp/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb \
27
+ && curl -4so " /tmp/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb" " http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb" \
26
28
&& apt-dpkg-wrap apt-get update \
27
- && apt-dpkg-wrap apt-get install -y /tmp/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb \
29
+ && apt-dpkg-wrap apt-get install -y " /tmp/google-chrome-stable_${CHROME_RELEASE}-1_amd64.deb" \
28
30
&& apt-cleanup \
29
31
|| true
30
32
31
33
RUN \
32
34
[ "${CHROMEDRIVER_MAJOR_RELEASE}" = "latest" ] \
33
35
&& CHROMEDRIVER_RELEASE="$(curl -4Ls https://chromedriver.storage.googleapis.com/LATEST_RELEASE)" \
34
36
|| CHROMEDRIVER_RELEASE="$(curl -4Ls https://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROMEDRIVER_MAJOR_RELEASE})" \
35
- && curl -4Ls https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_RELEASE}/chromedriver_linux64.zip \
37
+ && curl -4Ls " https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_RELEASE}/chromedriver_linux64.zip" \
36
38
| zcat >> /usr/bin/chromedriver \
37
39
&& chmod +x /usr/bin/chromedriver \
38
40
&& chromedriver --version
0 commit comments