Skip to content

Commit d5b6cad

Browse files
committed
Issue #446 - Cannot build an image based on the Dockerfile
* Updated Firefox to version 117.0 * Updated Chromium to version 116.0 * Updated the AWS CLI to version 1.29.40
1 parent 043a9ae commit d5b6cad

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM fedora:39
1+
FROM fedora:38
22

33
MAINTAINER Paul Podgorsek <[email protected]>
44
LABEL description Robot Framework in Docker.
@@ -29,15 +29,15 @@ ENV ROBOT_UID 1000
2929
ENV ROBOT_GID 1000
3030

3131
# Dependency versions
32-
ENV AWS_CLI_VERSION 1.27.157
32+
ENV AWS_CLI_VERSION 1.29.40
3333
ENV AXE_SELENIUM_LIBRARY_VERSION 2.1.6
3434
ENV BROWSER_LIBRARY_VERSION 16.2.0
35-
ENV CHROMIUM_VERSION 114.0
35+
ENV CHROMIUM_VERSION 116.0
3636
ENV DATABASE_LIBRARY_VERSION 1.2.4
3737
ENV DATADRIVER_VERSION 1.8.1
3838
ENV DATETIMETZ_VERSION 1.0.6
3939
ENV FAKER_VERSION 5.0.0
40-
ENV FIREFOX_VERSION 114.0
40+
ENV FIREFOX_VERSION 117.0
4141
ENV FTP_LIBRARY_VERSION 1.9
4242
ENV GECKO_DRIVER_VERSION v0.33.0
4343
ENV IMAP_LIBRARY_VERSION 0.4.6
@@ -62,9 +62,12 @@ RUN dnf upgrade -y --refresh \
6262
chromedriver-${CHROMIUM_VERSION}* \
6363
chromium-${CHROMIUM_VERSION}* \
6464
firefox-${FIREFOX_VERSION}* \
65+
gcc \
66+
gcc-c++ \
6567
npm \
6668
nodejs \
6769
python3-pip \
70+
python3-pyyaml \
6871
tzdata \
6972
xorg-x11-server-Xvfb-${XVFB_VERSION}* \
7073
&& dnf clean all
@@ -90,7 +93,6 @@ RUN pip3 install \
9093
robotframework-seleniumlibrary==$SELENIUM_LIBRARY_VERSION \
9194
robotframework-sshlibrary==$SSH_LIBRARY_VERSION \
9295
axe-selenium-python==$AXE_SELENIUM_LIBRARY_VERSION \
93-
PyYAML \
9496
# Install awscli to be able to upload test reports to AWS S3
9597
awscli==$AWS_CLI_VERSION \
9698
# Install an older Selenium version to avoid issues when running tests

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ The versions used are:
2828
* [Robot Framework SeleniumLibrary](https://github.com/robotframework/SeleniumLibrary) 6.1.0
2929
* [Robot Framework SSHLibrary](https://github.com/robotframework/SSHLibrary) 3.8.0
3030
* [Axe Selenium Library](https://github.com/mozilla-services/axe-selenium-python) 2.1.6
31-
* Firefox 114.0
32-
* Chromium 114.0
33-
* [Amazon AWS CLI](https://pypi.org/project/awscli/) 1.27.157
31+
* Firefox 117.0
32+
* Chromium 116.0
33+
* [Amazon AWS CLI](https://pypi.org/project/awscli/) 1.29.40
3434

3535
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.
3636

0 commit comments

Comments
 (0)