Skip to content

Commit 464077e

Browse files
authored
Merge pull request #87 from ppodgorsek/issue-86
Issue #86 - Update the base image to Fedora 28
2 parents ae2c5be + 1f8f87a commit 464077e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM fedora:27
1+
FROM fedora:28
22

33
MAINTAINER Paul Podgorsek <[email protected]>
44
LABEL description Robot Framework in Docker.
@@ -17,18 +17,20 @@ ENV CHROMIUM_VERSION 65.0.*
1717
ENV FAKER_VERSION 4.2.0
1818
ENV FIREFOX_VERSION 59.0*
1919
ENV GECKO_DRIVER_VERSION v0.19.1
20+
ENV PYTHON_PIP_VERSION 9.0.*
2021
ENV ROBOT_FRAMEWORK_VERSION 3.0.4
2122
ENV SELENIUM_LIBRARY_VERSION 3.1.1
23+
ENV XVFB_VERSION 1.19.*
2224

2325
# Install system dependencies
2426
RUN dnf upgrade -y \
2527
&& dnf install -y \
2628
chromedriver-$CHROMIUM_VERSION \
2729
chromium-$CHROMIUM_VERSION \
2830
firefox-$FIREFOX_VERSION \
29-
python2-pip-9.0.1-* \
31+
python2-pip-$PYTHON_PIP_VERSION \
3032
xauth \
31-
xorg-x11-server-Xvfb-1.19.* \
33+
xorg-x11-server-Xvfb-$XVFB_VERSION \
3234
which \
3335
wget \
3436
&& dnf clean all

0 commit comments

Comments
 (0)