Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Commit 457793a

Browse files
authored
Merge pull request #233 from elgalu/chrome-update
Update Chrome to 66.0.3359.117
2 parents 4e22732 + 334a49c commit 457793a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ USER root
296296
# python-openssl \
297297
# libssl-dev \
298298
# libffi-dev \
299-
# && pip install --upgrade pip \
299+
# && pip install --upgrade pip==9.0.3 \
300300
# && pip install --upgrade setuptools \
301301
# && rm -rf /var/lib/apt/lists/* \
302302
# && apt -qyy clean
@@ -319,10 +319,10 @@ RUN apt -qqy update \
319319
python3-dev \
320320
python3-openssl \
321321
libssl-dev libffi-dev \
322-
&& pip3 install --upgrade pip \
323-
&& pip3 install --upgrade setuptools \
324-
&& pip3 install --upgrade numpy \
325-
&& pip3 install --requirement /test/requirements.txt \
322+
&& pip3 install --no-cache --upgrade pip==9.0.3 \
323+
&& pip3 install --no-cache setuptools \
324+
&& pip3 install --no-cache numpy \
325+
&& pip3 install --no-cache --requirement /test/requirements.txt \
326326
&& rm -rf /var/lib/apt/lists/* \
327327
&& apt -qyy clean
328328
RUN cd /usr/local/bin \
@@ -351,7 +351,7 @@ RUN cd /usr/local/bin \
351351
# 2017-01-05 commit: 8be5bc15e83f0f, supervisor/version.txt: 4.0.0.dev0
352352
ENV RUN_DIR="/var/run/sele"
353353
RUN SHA="3f04badc3237f0d86fa88208455d8560c20bc2e7" \
354-
&& pip install --upgrade \
354+
&& pip install --no-cache \
355355
"https://github.com/Supervisor/supervisor/zipball/${SHA}" \
356356
&& rm -rf /var/lib/apt/lists/* \
357357
&& apt -qyy clean
@@ -636,7 +636,7 @@ COPY bin/fail /usr/bin/
636636
#===============
637637
# TODO: Use Google fingerprint to verify downloads
638638
# https://www.google.de/linuxrepositories/
639-
ARG EXPECTED_CHROME_VERSION="65.0.3325.181"
639+
ARG EXPECTED_CHROME_VERSION="66.0.3359.117"
640640
ENV CHROME_URL="https://dl.google.com/linux/direct" \
641641
CHROME_BASE_DEB_PATH="/home/seluser/chrome-deb/google-chrome" \
642642
GREP_ONLY_NUMS_VER="[0-9.]{2,20}"
@@ -679,7 +679,7 @@ USER seluser
679679
# Chrome webdriver
680680
#==================
681681
# How to get cpu arch dynamically: $(lscpu | grep Architecture | sed "s/^.*_//")
682-
ARG CHROME_DRIVER_VERSION="2.37"
682+
ARG CHROME_DRIVER_VERSION="2.38"
683683
ENV CHROME_DRIVER_BASE="chromedriver.storage.googleapis.com" \
684684
CPU_ARCH="64"
685685
ENV CHROME_DRIVER_FILE="chromedriver_linux${CPU_ARCH}.zip"

0 commit comments

Comments
 (0)