Skip to content

Commit 64b5674

Browse files
authored
Merge branch 'master' into issue-264
2 parents 8e09ca6 + 5b5c3c3 commit 64b5674

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

Dockerfile

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7-alpine3.10
1+
FROM python:3.8-alpine3.11
22

33
MAINTAINER Paul Podgorsek <[email protected]>
44
LABEL description Robot Framework in Docker.
@@ -24,11 +24,11 @@ ENV SCREEN_WIDTH 1920
2424
ENV ROBOT_THREADS 1
2525

2626
# Dependency versions
27-
ENV ALPINE_GLIBC 2.30-r0
28-
ENV CHROMIUM_VERSION 80.0
27+
ENV ALPINE_GLIBC 2.31-r0
28+
ENV CHROMIUM_VERSION 81.0
2929
ENV DATABASE_LIBRARY_VERSION 1.2
3030
ENV FAKER_VERSION 5.0.0
31-
ENV FIREFOX_VERSION 74.0
31+
ENV FIREFOX_VERSION 68.7
3232
ENV FTP_LIBRARY_VERSION 1.9
3333
ENV GECKO_DRIVER_VERSION v0.26.0
3434
ENV IMAP_LIBRARY_VERSION 0.3.0
@@ -45,10 +45,7 @@ COPY bin/chromium-browser.sh /opt/robotframework/bin/chromium-browser
4545
COPY bin/run-tests-in-virtual-screen.sh /opt/robotframework/bin/
4646

4747
# Install system dependencies
48-
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories \
49-
&& echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
50-
&& echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
51-
&& apk update \
48+
RUN apk update \
5249
&& apk --no-cache upgrade \
5350
&& apk --no-cache --virtual .build-deps add \
5451
gcc \
@@ -62,7 +59,7 @@ RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositori
6259
&& apk --no-cache add \
6360
"chromium~$CHROMIUM_VERSION" \
6461
"chromium-chromedriver~$CHROMIUM_VERSION" \
65-
"firefox~$FIREFOX_VERSION" \
62+
"firefox-esr~$FIREFOX_VERSION" \
6663
xauth \
6764
"xvfb-run~$XVFB_VERSION" \
6865
&& mv /usr/lib/chromium/chrome /usr/lib/chromium/chrome-original \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ The versions used are:
2424
* [Robot Framework Requests](https://github.com/bulkan/robotframework-requests) 0.6.6
2525
* [Robot Framework SeleniumLibrary](https://github.com/robotframework/SeleniumLibrary) 4.3.0
2626
* [Robot Framework SSHLibrary](https://github.com/robotframework/SSHLibrary) 3.4.0
27-
* Firefox 74.0
28-
* Chromium 80.0
27+
* Firefox ESR 68.7
28+
* Chromium 81.0
2929

3030
As stated by [the official GitHub project](https://github.com/robotframework/Selenium2Library), starting from version 3.0, Selenium2Library is renamed to SeleniumLibrary and this project exists mainly to help with transitioning. The Selenium2Library 3.0.0 is also the last release and for new releases, please look at the [SeleniumLibrary](https://github.com/robotframework/SeleniumLibrary) project.
3131

0 commit comments

Comments
 (0)