@@ -13,27 +13,27 @@ RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
13
13
&& echo "deb https://download.docker.com/linux/debian $(lsb_release -cs) stable" | tee -a /etc/apt/sources.list.d/docker.list
14
14
15
15
# Prerequisites for `node`
16
- RUN curl -sL https://deb.nodesource.com/setup_14 .x | bash -
16
+ RUN curl -sL https://deb.nodesource.com/setup_18 .x | bash -
17
17
18
18
# Prerequisites for `yarn` - https://yarnpkg.com/lang/en/docs/install/#linux-tab
19
19
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
20
- && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
20
+ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
21
21
22
22
# install firefox
23
23
ENV PATH /firefox:$PATH
24
24
RUN FIREFOX_URL="https://download-installer.cdn.mozilla.net/pub/firefox/releases/85.0.2/linux-x86_64/en-US/firefox-85.0.2.tar.bz2" \
25
25
FIREFOX_SHA256="98763f4b1526811967d71e1bbb9552a9a3fd877321ecb497083b9e313b528c31" \
26
- && curl --silent --show-error --location --fail --retry 3 --output /tmp/firefox.tar.bz2 $FIREFOX_URL \
27
- && echo "$FIREFOX_SHA256 /tmp/firefox.tar.bz2" | sha256sum -c \
28
- && tar -jxf /tmp/firefox.tar.bz2 \
29
- && rm /tmp/firefox.tar.bz2
26
+ && curl --silent --show-error --location --fail --retry 3 --output /tmp/firefox.tar.bz2 $FIREFOX_URL \
27
+ && echo "$FIREFOX_SHA256 /tmp/firefox.tar.bz2" | sha256sum -c \
28
+ && tar -jxf /tmp/firefox.tar.bz2 \
29
+ && rm /tmp/firefox.tar.bz2
30
30
31
31
# install chrome
32
32
RUN curl --silent --show-error --location --fail --retry 3 --output /tmp/google-chrome-stable_current_amd64.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \
33
- && (dpkg -i /tmp/google-chrome-stable_current_amd64.deb || apt-get -fy install) \
34
- && rm -rf /tmp/google-chrome-stable_current_amd64.deb \
35
- && sed -i 's|HERE/chrome"|HERE/chrome" --disable-setuid-sandbox --no-sandbox|g' \
36
- "/opt/google/chrome/google-chrome"
33
+ && (dpkg -i /tmp/google-chrome-stable_current_amd64.deb || apt-get -fy install) \
34
+ && rm -rf /tmp/google-chrome-stable_current_amd64.deb \
35
+ && sed -i 's|HERE/chrome"|HERE/chrome" --disable-setuid-sandbox --no-sandbox|g' \
36
+ "/opt/google/chrome/google-chrome"
37
37
38
38
# Install php7
39
39
RUN apt-get -y install apt-transport-https lsb-release ca-certificates \
0 commit comments