ppodgorsek / docker-robot-framework

Robot Framework in Docker
https://cloud.docker.com/repository/docker/ppodgorsek/robot-framework
MIT License
333 stars 235 forks source link

Error when build docker image - Error: Unable to find a match: firefox-98.0* #407

Closed lovelyplanet2019 closed 1 year ago

lovelyplanet2019 commented 2 years ago

I want to build a new docker image by running the command docker build -t robot-runner . at Ubuntu 20. machine.

Last metadata expiration check: 0:01:40 ago on Fri May  6 06:09:50 2022.
No match for argument: firefox-98.0*
Package tzdata-2022a-2.fc36.noarch is already installed.
Error: Unable to find a match: firefox-98.0*
The command '/bin/sh -c dnf upgrade -y --refresh   && dnf install -y     chromedriver-${CHROMIUM_VERSION}*     chromium-${CHROMIUM_VERSION}*     firefox-${FIREFOX_VERSION}*     npm     nodejs     python3-pip     tzdata     xorg-x11-server-Xvfb-${XVFB_VERSION}*   && dnf clean all' returned a non-zero code: 1

Docker file content is copied from repo, by adding new library 'rpaframework'

FROM fedora:36

MAINTAINER Paul Podgorsek <ppodgorsek@users.noreply.github.com>
LABEL description Robot Framework in Docker.

# Set the reports directory environment variable
ENV ROBOT_REPORTS_DIR /opt/robotframework/reports

# Set the tests directory environment variable
ENV ROBOT_TESTS_DIR /opt/robotframework/tests

# Set the working directory environment variable
ENV ROBOT_WORK_DIR /opt/robotframework/temp

# Setup X Window Virtual Framebuffer
ENV SCREEN_COLOUR_DEPTH 24
ENV SCREEN_HEIGHT 1080
ENV SCREEN_WIDTH 1920

# Setup the timezone to use, defaults to UTC
ENV TZ UTC

# Set number of threads for parallel execution
# By default, no parallelisation
ENV ROBOT_THREADS 1

# Define the default user who'll run the tests
ENV ROBOT_UID 1000
ENV ROBOT_GID 1000

# Dependency versions
ENV ALPINE_GLIBC 2.35-r0
ENV AWS_CLI_VERSION 1.22.87
ENV AXE_SELENIUM_LIBRARY_VERSION 2.1.6
ENV BROWSER_LIBRARY_VERSION 12.2.0
ENV CHROMIUM_VERSION 99.0
ENV DATABASE_LIBRARY_VERSION 1.2.4
ENV DATADRIVER_VERSION 1.6.0
ENV DATETIMETZ_VERSION 1.0.6
ENV FAKER_VERSION 5.0.0
ENV FIREFOX_VERSION 98.0
ENV FTP_LIBRARY_VERSION 1.9
ENV GECKO_DRIVER_VERSION v0.30.0
ENV IMAP_LIBRARY_VERSION 0.4.2
ENV PABOT_VERSION 2.5.2
ENV REQUESTS_VERSION 0.9.2
ENV ROBOT_FRAMEWORK_VERSION 5.0
ENV SELENIUM_LIBRARY_VERSION 6.0.0
ENV SSH_LIBRARY_VERSION 3.8.0
ENV XVFB_VERSION 1.20
ENV RPA_VERSION 11.6.4

# By default, no reports are uploaded to AWS S3
ENV AWS_UPLOAD_TO_S3 false

# Prepare binaries to be executed
COPY bin/chromedriver.sh /opt/robotframework/bin/chromedriver
COPY bin/chromium-browser.sh /opt/robotframework/bin/chromium-browser
COPY bin/run-tests-in-virtual-screen.sh /opt/robotframework/bin/

# Install system dependencies
RUN dnf upgrade -y --refresh \
  && dnf install -y \
    chromedriver-${CHROMIUM_VERSION}* \
    chromium-${CHROMIUM_VERSION}* \
    firefox-${FIREFOX_VERSION}* \
    npm \
    nodejs \
    python3-pip \
    tzdata \
    xorg-x11-server-Xvfb-${XVFB_VERSION}* \
  && dnf clean all

# FIXME: below is a workaround, as the path is ignored
RUN mv /usr/lib64/chromium-browser/chromium-browser /usr/lib64/chromium-browser/chromium-browser-original \
  && ln -sfv /opt/robotframework/bin/chromium-browser /usr/lib64/chromium-browser/chromium-browser

# Install Robot Framework and associated libraries
RUN pip3 install \
  --no-cache-dir \
  robotframework==$ROBOT_FRAMEWORK_VERSION \
  robotframework-browser==$BROWSER_LIBRARY_VERSION \
  robotframework-databaselibrary==$DATABASE_LIBRARY_VERSION \
  robotframework-datadriver==$DATADRIVER_VERSION \
  robotframework-datadriver[XLS] \
  robotframework-datetime-tz==$DATETIMETZ_VERSION \
  robotframework-faker==$FAKER_VERSION \
  robotframework-ftplibrary==$FTP_LIBRARY_VERSION \
  robotframework-imaplibrary2==$IMAP_LIBRARY_VERSION \
  robotframework-pabot==$PABOT_VERSION \
  robotframework-requests==$REQUESTS_VERSION \
  robotframework-seleniumlibrary==$SELENIUM_LIBRARY_VERSION \
  robotframework-sshlibrary==$SSH_LIBRARY_VERSION \
  axe-selenium-python==$AXE_SELENIUM_LIBRARY_VERSION \
  PyYAML \
  rpaframework==$RPA_VERSION \
  # Install awscli to be able to upload test reports to AWS S3
  awscli==$AWS_CLI_VERSION

# Gecko drivers
RUN dnf install -y \
    wget \

  # Download Gecko drivers directly from the GitHub repository
  && wget -q "https://github.com/mozilla/geckodriver/releases/download/$GECKO_DRIVER_VERSION/geckodriver-$GECKO_DRIVER_VERSION-linux64.tar.gz" \
  && tar xzf geckodriver-$GECKO_DRIVER_VERSION-linux64.tar.gz \
  && mkdir -p /opt/robotframework/drivers/ \
  && mv geckodriver /opt/robotframework/drivers/geckodriver \
  && rm geckodriver-$GECKO_DRIVER_VERSION-linux64.tar.gz \

  && dnf remove -y \
    wget \
  && dnf clean all

# Install the Node dependencies for the Browser library
# FIXME: Playright currently doesn't support relying on system browsers, which is why the `--skip-browsers` parameter cannot be used here.
RUN rfbrowser init \
  && ln -sf /usr/lib64/libstdc++.so.6 /usr/local/lib/python3.10/site-packages/Browser/wrapper/node_modules/playwright-core/.local-browsers/firefox-1316/firefox/libstdc++.so.6

# Create the default report and work folders with the default user to avoid runtime issues
# These folders are writeable by anyone, to ensure the user can be changed on the command line.
RUN mkdir -p ${ROBOT_REPORTS_DIR} \
  && mkdir -p ${ROBOT_WORK_DIR} \
  && chown ${ROBOT_UID}:${ROBOT_GID} ${ROBOT_REPORTS_DIR} \
  && chown ${ROBOT_UID}:${ROBOT_GID} ${ROBOT_WORK_DIR} \
  && chmod ugo+w ${ROBOT_REPORTS_DIR} ${ROBOT_WORK_DIR}

# Allow any user to write logs
RUN chmod ugo+w /var/log \
  && chown ${ROBOT_UID}:${ROBOT_GID} /var/log

# Update system path
ENV PATH=/opt/robotframework/bin:/opt/robotframework/drivers:$PATH

# Set up a volume for the generated reports
VOLUME ${ROBOT_REPORTS_DIR}

USER ${ROBOT_UID}:${ROBOT_GID}

# A dedicated work folder to allow for the creation of temporary files
WORKDIR ${ROBOT_WORK_DIR}

# Execute all robot tests
CMD ["run-tests-in-virtual-screen.sh"]
danielfournier-tech commented 1 year ago

I have run into the same issue.

docker build -t docker-robot-framework .

[+] Building 151.8s (9/16) => [internal] load build definition from Dockerfile 0.1s => => transferring dockerfile: 5.13kB 0.0s => [internal] load .dockerignore 0.0s => => transferring context: 183B 0.0s => [internal] load metadata for docker.io/library/fedora:36 1.7s => [ 1/12] FROM docker.io/library/fedora:36@sha256:cbf627299e327f564233aac6b97030f9023ca41d3453c497be2f5e8f7762d185 14.2s => => resolve docker.io/library/fedora:36@sha256:cbf627299e327f564233aac6b97030f9023ca41d3453c497be2f5e8f7762d185 0.0s => => sha256:cbf627299e327f564233aac6b97030f9023ca41d3453c497be2f5e8f7762d185 1.20kB / 1.20kB 0.0s => => sha256:486fd5578f93fbc57a519e34ad4b7cac927c3f8a95409baedf0c19e9f287c207 529B / 529B 0.0s => => sha256:98ffdbffd20736862c8955419ef7db69849d715131717697007c3e51f22915a5 2.00kB / 2.00kB 0.0s => => sha256:e1deda52ffad5c9c8e3b7151625b679af50d6459630f4bf0fbf49e161dba4e88 58.93MB / 58.93MB 10.9s => => extracting sha256:e1deda52ffad5c9c8e3b7151625b679af50d6459630f4bf0fbf49e161dba4e88 3.0s => [internal] load build context 0.0s => => transferring context: 1.87kB 0.0s => [ 2/12] COPY bin/chromedriver.sh /opt/robotframework/bin/chromedriver 0.3s => [ 3/12] COPY bin/chromium-browser.sh /opt/robotframework/bin/chromium-browser 0.0s => [ 4/12] COPY bin/run-tests-in-virtual-screen.sh /opt/robotframework/bin/ 0.0s => ERROR [ 5/12] RUN dnf upgrade -y --refresh && dnf install -y chromedriver-99.0 chromium-99.0 firef 135.4s

[ 5/12] RUN dnf upgrade -y --refresh && dnf install -y chromedriver-99.0 chromium-99.0 firefox-98.0 npm nodejs python3-pip tzdata xorg-x11-server-Xvfb-1.20 && dnf clean all:

9 17.02 Fedora 36 - x86_64 4.9 MB/s | 81 MB 00:16

9 34.93 Fedora 36 openh264 (From Cisco) - x86_64 2.9 kB/s | 2.5 kB 00:00

9 37.88 Fedora Modular 36 - x86_64 926 kB/s | 2.4 MB 00:02

9 67.25 Fedora 36 - x86_64 - Updates 945 kB/s | 26 MB 00:28

9 79.22 Fedora Modular 36 - x86_64 - Updates 654 kB/s | 2.8 MB 00:04

9 84.17 Dependencies resolved.

9 84.20 ======================================================================================

9 84.20 Package Arch Version Repo Size

9 84.20 ======================================================================================

9 84.20 Upgrading:

9 84.20 authselect x86_64 1.4.0-1.fc36 updates 139 k

9 84.20 authselect-libs x86_64 1.4.0-1.fc36 updates 234 k

9 84.20 ca-certificates noarch 2022.2.54-1.2.fc36 updates 828 k

9 84.20 coreutils x86_64 9.0-8.fc36 updates 1.1 M

9 84.20 coreutils-common x86_64 9.0-8.fc36 updates 2.0 M

9 84.20 crypto-policies noarch 20220428-1.gitdfb10ea.fc36 updates 62 k

9 84.20 curl x86_64 7.82.0-7.fc36 updates 309 k

9 84.20 dnf noarch 4.13.0-1.fc36 updates 453 k

9 84.20 dnf-data noarch 4.13.0-1.fc36 updates 42 k

9 84.20 elfutils-default-yama-scope noarch 0.187-4.fc36 updates 17 k

9 84.20 elfutils-libelf x86_64 0.187-4.fc36 updates 198 k

9 84.20 elfutils-libs x86_64 0.187-4.fc36 updates 257 k

9 84.20 fedora-gpg-keys noarch 36-4 updates 115 k

9 84.20 fedora-release-common noarch 36-18 updates 21 k

9 84.20 fedora-release-container noarch 36-18 updates 11 k

9 84.20 fedora-release-identity-container noarch 36-18 updates 12 k

9 84.20 fedora-repos noarch 36-4 updates 10 k

9 84.20 fedora-repos-modular noarch 36-4 updates 9.7 k

9 84.20 filesystem x86_64 3.18-2.fc36 updates 1.1 M

9 84.20 glib2 x86_64 2.72.3-1.fc36 updates 2.7 M

9 84.20 glibc x86_64 2.35-15.fc36 updates 2.1 M

9 84.20 glibc-common x86_64 2.35-15.fc36 updates 332 k

9 84.20 glibc-minimal-langpack x86_64 2.35-15.fc36 updates 55 k

9 84.20 gnupg2 x86_64 2.3.7-3.fc36 updates 2.5 M

9 84.20 gnutls x86_64 3.7.7-1.fc36 updates 1.1 M

9 84.20 krb5-libs x86_64 1.19.2-11.fc36 updates 723 k

9 84.20 libarchive x86_64 3.5.3-3.fc36 updates 393 k

9 84.20 libblkid x86_64 2.38-1.fc36 updates 106 k

9 84.20 libcap-ng x86_64 0.8.3-1.fc36 updates 33 k

9 84.20 libcurl x86_64 7.82.0-7.fc36 updates 301 k

9 84.20 libdnf x86_64 0.68.0-1.fc36 updates 663 k

9 84.20 libgcc x86_64 12.2.1-1.fc36 updates 107 k

9 84.20 libgcrypt x86_64 1.10.1-3.fc36 updates 511 k

9 84.20 libgomp x86_64 12.2.1-1.fc36 updates 293 k

9 84.20 libgpg-error x86_64 1.45-1.fc36 updates 221 k

9 84.20 libidn2 x86_64 2.3.3-1.fc36 updates 107 k

9 84.20 libmount x86_64 2.38-1.fc36 updates 135 k

9 84.20 librepo x86_64 1.14.4-1.fc36 updates 93 k

9 84.20 libreport-filesystem noarch 2.17.2-1.fc36 updates 13 k

9 84.20 libsmartcols x86_64 2.38-1.fc36 updates 64 k

9 84.20 libsolv x86_64 0.7.22-1.fc36 updates 406 k

9 84.20 libstdc++ x86_64 12.2.1-1.fc36 updates 778 k

9 84.20 libtirpc x86_64 1.3.3-0.fc36 updates 93 k

9 84.20 libuuid x86_64 2.38-1.fc36 updates 27 k

9 84.20 libxml2 x86_64 2.9.14-1.fc36 updates 752 k

9 84.20 libzstd x86_64 1.5.2-2.fc36 updates 294 k

9 84.20 lua-libs x86_64 5.4.4-3.fc36 updates 216 k

9 84.20 nettle x86_64 3.8-1.fc36 updates 414 k

9 84.20 openldap x86_64 2.6.2-3.fc36 updates 253 k

9 84.20 openldap-compat x86_64 2.6.2-3.fc36 updates 17 k

9 84.20 openssl-libs x86_64 1:3.0.5-1.fc36 updates 2.1 M

9 84.20 pam x86_64 1.5.2-13.fc36 updates 522 k

9 84.20 pam-libs x86_64 1.5.2-13.fc36 updates 58 k

9 84.20 pcre2 x86_64 10.40-1.fc36 updates 237 k

9 84.20 pcre2-syntax noarch 10.40-1.fc36 updates 143 k

9 84.20 python3 x86_64 3.10.6-1.fc36 updates 27 k

9 84.20 python3-dnf noarch 4.13.0-1.fc36 updates 415 k

9 84.20 python3-hawkey x86_64 0.68.0-1.fc36 updates 105 k

9 84.20 python3-libdnf x86_64 0.68.0-1.fc36 updates 794 k

9 84.20 python3-libs x86_64 3.10.6-1.fc36 updates 7.4 M

9 84.20 python3-rpm x86_64 4.17.1-3.fc36 updates 90 k

9 84.20 rpm x86_64 4.17.1-3.fc36 updates 536 k

9 84.20 rpm-build-libs x86_64 4.17.1-3.fc36 updates 92 k

9 84.20 rpm-libs x86_64 4.17.1-3.fc36 updates 314 k

9 84.20 rpm-sign-libs x86_64 4.17.1-3.fc36 updates 25 k

9 84.20 setup noarch 2.14.1-1.fc36 updates 143 k

9 84.20 shadow-utils x86_64 2:4.11.1-3.fc36 updates 1.1 M

9 84.20 systemd-libs x86_64 250.8-1.fc36 updates 614 k

9 84.20 tpm2-tss x86_64 3.2.0-3.fc36 updates 596 k

9 84.20 tzdata noarch 2022c-1.fc36 updates 429 k

9 84.20 util-linux-core x86_64 2.38-1.fc36 updates 454 k

9 84.20 vim-data noarch 2:9.0.246-1.fc36 updates 25 k

9 84.20 vim-minimal x86_64 2:9.0.246-1.fc36 updates 753 k

9 84.20 yum noarch 4.13.0-1.fc36 updates 40 k

9 84.20 zchunk-libs x86_64 1.2.2-1.fc36 updates 51 k

9 84.20 zlib x86_64 1.2.11-32.fc36 updates 90 k

9 84.20

9 84.20 Transaction Summary

9 84.20 ======================================================================================

9 84.20 Upgrade 76 Packages

9 84.20

9 84.21 Total download size: 39 M

9 84.21 Downloading Packages:

9 85.29 (1/76): authselect-1.4.0-1.fc36.x86_64.rpm 216 kB/s | 139 kB 00:00

9 85.45 (2/76): authselect-libs-1.4.0-1.fc36.x86_64.rpm 289 kB/s | 234 kB 00:00

9 85.67 (3/76): ca-certificates-2022.2.54-1.2.fc36.noar 805 kB/s | 828 kB 00:01

9 85.79 (4/76): coreutils-9.0-8.fc36.x86_64.rpm 2.2 MB/s | 1.1 MB 00:00

9 85.82 (5/76): crypto-policies-20220428-1.gitdfb10ea.f 419 kB/s | 62 kB 00:00

9 85.98 (6/76): curl-7.82.0-7.fc36.x86_64.rpm 1.5 MB/s | 309 kB 00:00

9 86.03 (7/76): dnf-4.13.0-1.fc36.noarch.rpm 2.1 MB/s | 453 kB 00:00

9 86.22 (8/76): coreutils-common-9.0-8.fc36.x86_64.rpm 2.6 MB/s | 2.0 MB 00:00

9 86.23 (9/76): dnf-data-4.13.0-1.fc36.noarch.rpm 176 kB/s | 42 kB 00:00

9 86.26 (10/76): elfutils-default-yama-scope-0.187-4.fc 73 kB/s | 17 kB 00:00

9 86.36 (11/76): elfutils-libelf-0.187-4.fc36.x86_64.rp 1.3 MB/s | 198 kB 00:00

9 86.38 (12/76): elfutils-libs-0.187-4.fc36.x86_64.rpm 1.7 MB/s | 257 kB 00:00

9 86.38 (13/76): fedora-gpg-keys-36-4.noarch.rpm 977 kB/s | 115 kB 00:00

9 86.46 (14/76): fedora-release-common-36-18.noarch.rpm 214 kB/s | 21 kB 00:00

9 86.47 (15/76): fedora-release-container-36-18.noarch. 119 kB/s | 11 kB 00:00

9 86.48 (16/76): fedora-release-identity-container-36-1 129 kB/s | 12 kB 00:00

9 86.56 (17/76): fedora-repos-36-4.noarch.rpm 105 kB/s | 10 kB 00:00

9 86.56 (18/76): fedora-repos-modular-36-4.noarch.rpm 104 kB/s | 9.7 kB 00:00

9 87.28 (19/76): glib2-2.72.3-1.fc36.x86_64.rpm 3.7 MB/s | 2.7 MB 00:00

9 87.30 (20/76): glibc-2.35-15.fc36.x86_64.rpm 2.9 MB/s | 2.1 MB 00:00

9 87.41 (21/76): glibc-common-2.35-15.fc36.x86_64.rpm 2.5 MB/s | 332 kB 00:00

9 87.43 (22/76): glibc-minimal-langpack-2.35-15.fc36.x8 444 kB/s | 55 kB 00:00

9 87.88 (23/76): filesystem-3.18-2.fc36.x86_64.rpm 777 kB/s | 1.1 MB 00:01

9 87.95 (24/76): gnupg2-2.3.7-3.fc36.x86_64.rpm 4.6 MB/s | 2.5 MB 00:00

9 87.98 (25/76): gnutls-3.7.7-1.fc36.x86_64.rpm 1.9 MB/s | 1.1 MB 00:00

9 88.19 (26/76): krb5-libs-1.19.2-11.fc36.x86_64.rpm 2.3 MB/s | 723 kB 00:00

9 88.19 (27/76): libarchive-3.5.3-3.fc36.x86_64.rpm 1.6 MB/s | 393 kB 00:00

9 88.20 (28/76): libblkid-2.38-1.fc36.x86_64.rpm 501 kB/s | 106 kB 00:00

9 88.29 (29/76): libcap-ng-0.8.3-1.fc36.x86_64.rpm 341 kB/s | 33 kB 00:00

9 88.34 (30/76): libcurl-7.82.0-7.fc36.x86_64.rpm 2.1 MB/s | 301 kB 00:00

9 88.39 (31/76): libdnf-0.68.0-1.fc36.x86_64.rpm 3.4 MB/s | 663 kB 00:00

9 88.48 (32/76): libgcc-12.2.1-1.fc36.x86_64.rpm 552 kB/s | 107 kB 00:00

9 88.53 (33/76): libgcrypt-1.10.1-3.fc36.x86_64.rpm 2.6 MB/s | 511 kB 00:00

9 88.54 (34/76): libgomp-12.2.1-1.fc36.x86_64.rpm 1.9 MB/s | 293 kB 00:00

9 88.65 (35/76): libgpg-error-1.45-1.fc36.x86_64.rpm 1.3 MB/s | 221 kB 00:00

9 88.66 (36/76): libidn2-2.3.3-1.fc36.x86_64.rpm 833 kB/s | 107 kB 00:00

9 88.67 (37/76): libmount-2.38-1.fc36.x86_64.rpm 1.0 MB/s | 135 kB 00:00

9 88.77 (38/76): libreport-filesystem-2.17.2-1.fc36.noa 118 kB/s | 13 kB 00:00

9 88.77 (39/76): librepo-1.14.4-1.fc36.x86_64.rpm 776 kB/s | 93 kB 00:00

9 88.78 (40/76): libsmartcols-2.38-1.fc36.x86_64.rpm 607 kB/s | 64 kB 00:00

9 89.26 (41/76): libstdc++-12.2.1-1.fc36.x86_64.rpm 1.6 MB/s | 778 kB 00:00

9 89.37 (42/76): libuuid-2.38-1.fc36.x86_64.rpm 244 kB/s | 27 kB 00:00

9 89.70 (43/76): libsolv-0.7.22-1.fc36.x86_64.rpm 435 kB/s | 406 kB 00:00

9 90.00 (44/76): libtirpc-1.3.3-0.fc36.x86_64.rpm 76 kB/s | 93 kB 00:01

9 90.01 (45/76): libzstd-1.5.2-2.fc36.x86_64.rpm 972 kB/s | 294 kB 00:00

9 90.17 (46/76): nettle-3.8-1.fc36.x86_64.rpm 2.5 MB/s | 414 kB 00:00

9 90.36 (47/76): openldap-2.6.2-3.fc36.x86_64.rpm 1.3 MB/s | 253 kB 00:00

9 90.46 (48/76): openldap-compat-2.6.2-3.fc36.x86_64.rp 174 kB/s | 17 kB 00:00

9 90.56 (49/76): libxml2-2.9.14-1.fc36.x86_64.rpm 634 kB/s | 752 kB 00:01

9 90.64 (50/76): lua-libs-5.4.4-3.fc36.x86_64.rpm 336 kB/s | 216 kB 00:00

9 90.87 (51/76): pam-libs-1.5.2-13.fc36.x86_64.rpm 253 kB/s | 58 kB 00:00

9 91.00 (52/76): openssl-libs-3.0.5-1.fc36.x86_64.rpm 4.0 MB/s | 2.1 MB 00:00

9 91.09 (53/76): pam-1.5.2-13.fc36.x86_64.rpm 985 kB/s | 522 kB 00:00

9 91.10 (54/76): pcre2-10.40-1.fc36.x86_64.rpm 1.0 MB/s | 237 kB 00:00

9 91.14 (55/76): pcre2-syntax-10.40-1.fc36.noarch.rpm 1.0 MB/s | 143 kB 00:00

9 91.21 (56/76): python3-3.10.6-1.fc36.x86_64.rpm 225 kB/s | 27 kB 00:00

9 91.29 (57/76): python3-dnf-4.13.0-1.fc36.noarch.rpm 2.1 MB/s | 415 kB 00:00

9 91.30 (58/76): python3-hawkey-0.68.0-1.fc36.x86_64.rp 668 kB/s | 105 kB 00:00

9 91.48 (59/76): python3-rpm-4.17.1-3.fc36.x86_64.rpm 490 kB/s | 90 kB 00:00

9 91.65 (60/76): rpm-4.17.1-3.fc36.x86_64.rpm 3.0 MB/s | 536 kB 00:00

9 91.85 (61/76): rpm-build-libs-4.17.1-3.fc36.x86_64.rp 463 kB/s | 92 kB 00:00

9 92.02 (62/76): python3-libdnf-0.68.0-1.fc36.x86_64.rp 983 kB/s | 794 kB 00:00

9 92.08 (63/76): rpm-libs-4.17.1-3.fc36.x86_64.rpm 1.4 MB/s | 314 kB 00:00

9 92.16 (64/76): rpm-sign-libs-4.17.1-3.fc36.x86_64.rpm 176 kB/s | 25 kB 00:00

9 92.20 (65/76): setup-2.14.1-1.fc36.noarch.rpm 1.2 MB/s | 143 kB 00:00

9 92.40 (66/76): systemd-libs-250.8-1.fc36.x86_64.rpm 3.0 MB/s | 614 kB 00:00

9 92.72 (67/76): tpm2-tss-3.2.0-3.fc36.x86_64.rpm 1.8 MB/s | 596 kB 00:00

9 92.99 (68/76): tzdata-2022c-1.fc36.noarch.rpm 1.5 MB/s | 429 kB 00:00

9 93.24 (69/76): python3-libs-3.10.6-1.fc36.x86_64.rpm 3.8 MB/s | 7.4 MB 00:01

9 93.24 (70/76): util-linux-core-2.38-1.fc36.x86_64.rpm 1.8 MB/s | 454 kB 00:00

9 93.35 (71/76): vim-data-9.0.246-1.fc36.noarch.rpm 230 kB/s | 25 kB 00:00

9 93.44 (72/76): shadow-utils-4.11.1-3.fc36.x86_64.rpm 875 kB/s | 1.1 MB 00:01

9 93.53 (73/76): vim-minimal-9.0.246-1.fc36.x86_64.rpm 2.6 MB/s | 753 kB 00:00

9 93.53 (74/76): yum-4.13.0-1.fc36.noarch.rpm 215 kB/s | 40 kB 00:00

9 93.56 (75/76): zchunk-libs-1.2.2-1.fc36.x86_64.rpm 456 kB/s | 51 kB 00:00

9 93.65 (76/76): zlib-1.2.11-32.fc36.x86_64.rpm 734 kB/s | 90 kB 00:00

9 93.65 --------------------------------------------------------------------------------

9 93.65 Total 4.2 MB/s | 39 MB 00:09

9 94.43 Running transaction check

9 94.58 Transaction check succeeded.

9 94.58 Running transaction test

9 95.24 Transaction test succeeded.

9 95.24 Running transaction

9 95.94 Running scriptlet: filesystem-3.18-2.fc36.x86_64 1/1

9 96.30 Preparing : 1/1

9 96.35 Upgrading : libgcc-12.2.1-1.fc36.x86_64 1/152

9 96.40 Running scriptlet: libgcc-12.2.1-1.fc36.x86_64 1/152

9 96.43 Upgrading : crypto-policies-20220428-1.gitdfb10ea.fc36.noarc 2/152

9 96.44 Running scriptlet: crypto-policies-20220428-1.gitdfb10ea.fc36.noarc 2/152

9 96.58 Upgrading : tzdata-2022c-1.fc36.noarch 3/152

9 96.64 Upgrading : glibc-common-2.35-15.fc36.x86_64 4/152

9 96.65 Upgrading : glibc-minimal-langpack-2.35-15.fc36.x86_64 5/152

9 96.65 Running scriptlet: glibc-2.35-15.fc36.x86_64 6/152

9 96.70 Upgrading : glibc-2.35-15.fc36.x86_64 6/152

9 96.71 Running scriptlet: glibc-2.35-15.fc36.x86_64 6/152

9 96.74 Upgrading : zlib-1.2.11-32.fc36.x86_64 7/152

9 96.75 Upgrading : libzstd-1.5.2-2.fc36.x86_64 8/152

9 96.76 Upgrading : libuuid-2.38-1.fc36.x86_64 9/152

9 96.77 Upgrading : lua-libs-5.4.4-3.fc36.x86_64 10/152

9 96.77 Upgrading : elfutils-libelf-0.187-4.fc36.x86_64 11/152

9 96.79 Upgrading : libxml2-2.9.14-1.fc36.x86_64 12/152

9 96.80 Upgrading : libsmartcols-2.38-1.fc36.x86_64 13/152

9 96.82 Upgrading : libstdc++-12.2.1-1.fc36.x86_64 14/152

9 96.83 Upgrading : libgpg-error-1.45-1.fc36.x86_64 15/152

9 96.84 Upgrading : libgcrypt-1.10.1-3.fc36.x86_64 16/152

9 96.85 Upgrading : libidn2-2.3.3-1.fc36.x86_64 17/152

9 96.86 Upgrading : fedora-release-identity-container-36-18.noarch 18/152

9 96.88 Upgrading : systemd-libs-250.8-1.fc36.x86_64 19/152

9 96.89 Upgrading : libgomp-12.2.1-1.fc36.x86_64 20/152

9 96.90 Upgrading : nettle-3.8-1.fc36.x86_64 21/152

9 96.92 Upgrading : gnutls-3.7.7-1.fc36.x86_64 22/152

9 96.93 Upgrading : pam-libs-1.5.2-13.fc36.x86_64 23/152

9 96.94 Upgrading : vim-data-2:9.0.246-1.fc36.noarch 24/152

9 96.94 Upgrading : pcre2-syntax-10.40-1.fc36.noarch 25/152

9 96.95 Upgrading : libreport-filesystem-2.17.2-1.fc36.noarch 26/152

9 96.96 Upgrading : dnf-data-4.13.0-1.fc36.noarch 27/152

9 96.96 warning: /etc/dnf/dnf.conf created as /etc/dnf/dnf.conf.rpmnew

9 96.96

9 96.99 Upgrading : fedora-gpg-keys-36-4.noarch 28/152

9 96.99 Upgrading : fedora-release-container-36-18.noarch 29/152

9 97.01 Upgrading : fedora-repos-36-4.noarch 30/152

9 97.02 Upgrading : fedora-release-common-36-18.noarch 31/152

9 97.06 Upgrading : setup-2.14.1-1.fc36.noarch 32/152

9 97.06 warning: /etc/hosts created as /etc/hosts.rpmnew

9 97.06 warning: /etc/shadow created as /etc/shadow.rpmnew

9 97.06

9 97.07 Running scriptlet: setup-2.14.1-1.fc36.noarch 32/152

9 97.10 Upgrading : shadow-utils-2:4.11.1-3.fc36.x86_64 33/152

9 97.11 Upgrading : elfutils-default-yama-scope-0.187-4.fc36.noarch 34/152

9 97.12 Running scriptlet: elfutils-default-yama-scope-0.187-4.fc36.noarch 34/152

9 97.13 Upgrading : elfutils-libs-0.187-4.fc36.x86_64 35/152

9 97.18 Upgrading : coreutils-common-9.0-8.fc36.x86_64 36/152

9 97.23 Upgrading : openssl-libs-1:3.0.5-1.fc36.x86_64 37/152

9 97.27 Upgrading : coreutils-9.0-8.fc36.x86_64 38/152

9 97.29 Running scriptlet: ca-certificates-2022.2.54-1.2.fc36.noarch 39/152

9 97.32 Upgrading : ca-certificates-2022.2.54-1.2.fc36.noarch 39/152

9 97.32 Running scriptlet: ca-certificates-2022.2.54-1.2.fc36.noarch 39/152

9 98.47 Upgrading : openldap-2.6.2-3.fc36.x86_64 40/152

9 98.49 Upgrading : krb5-libs-1.19.2-11.fc36.x86_64 41/152

9 98.50 Upgrading : libcurl-7.82.0-7.fc36.x86_64 42/152

9 98.52 Upgrading : libtirpc-1.3.3-0.fc36.x86_64 43/152

9 98.52 Upgrading : python3-3.10.6-1.fc36.x86_64 44/152

9 98.90 Upgrading : python3-libs-3.10.6-1.fc36.x86_64 45/152

9 98.93 Upgrading : libblkid-2.38-1.fc36.x86_64 46/152

9 98.93 Running scriptlet: libblkid-2.38-1.fc36.x86_64 46/152

9 98.94 Upgrading : libmount-2.38-1.fc36.x86_64 47/152

9 99.00 Upgrading : glib2-2.72.3-1.fc36.x86_64 48/152

9 99.01 Upgrading : zchunk-libs-1.2.2-1.fc36.x86_64 49/152

9 99.02 Upgrading : librepo-1.14.4-1.fc36.x86_64 50/152

9 99.02 Upgrading : curl-7.82.0-7.fc36.x86_64 51/152

9 99.07 Upgrading : gnupg2-2.3.7-3.fc36.x86_64 52/152

9 99.08 Running scriptlet: authselect-libs-1.4.0-1.fc36.x86_64 53/152

9 99.09 Upgrading : authselect-libs-1.4.0-1.fc36.x86_64 53/152

9 99.10 Upgrading : authselect-1.4.0-1.fc36.x86_64 54/152

9 99.12 Upgrading : libarchive-3.5.3-3.fc36.x86_64 55/152

9 99.12 Running scriptlet: rpm-4.17.1-3.fc36.x86_64 56/152

9 99.16 Upgrading : rpm-4.17.1-3.fc36.x86_64 56/152

9 99.17 Upgrading : rpm-libs-4.17.1-3.fc36.x86_64 57/152

9 99.19 Upgrading : libsolv-0.7.22-1.fc36.x86_64 58/152

9 99.21 Upgrading : libdnf-0.68.0-1.fc36.x86_64 59/152

9 99.23 Upgrading : python3-libdnf-0.68.0-1.fc36.x86_64 60/152

9 99.24 Upgrading : python3-hawkey-0.68.0-1.fc36.x86_64 61/152

9 99.25 Upgrading : rpm-build-libs-4.17.1-3.fc36.x86_64 62/152

9 99.26 Upgrading : rpm-sign-libs-4.17.1-3.fc36.x86_64 63/152

9 99.27 Upgrading : python3-rpm-4.17.1-3.fc36.x86_64 64/152

9 99.30 Upgrading : python3-dnf-4.13.0-1.fc36.noarch 65/152

9 99.31 Upgrading : dnf-4.13.0-1.fc36.noarch 66/152

9 99.32 Running scriptlet: dnf-4.13.0-1.fc36.noarch 66/152

9 99.33 Upgrading : yum-4.13.0-1.fc36.noarch 67/152

9 99.41 Upgrading : pam-1.5.2-13.fc36.x86_64 68/152

9 99.44 Upgrading : util-linux-core-2.38-1.fc36.x86_64 69/152

9 99.45 Running scriptlet: util-linux-core-2.38-1.fc36.x86_64 69/152

9 99.46 Running scriptlet: tpm2-tss-3.2.0-3.fc36.x86_64 70/152

9 99.48 Upgrading : tpm2-tss-3.2.0-3.fc36.x86_64 70/152

9 99.49 Upgrading : openldap-compat-2.6.2-3.fc36.x86_64 71/152

9 99.56 Upgrading : filesystem-3.18-2.fc36.x86_64 72/152

9 99.70 Upgrading : fedora-repos-modular-36-4.noarch 73/152

9 99.71 Upgrading : pcre2-10.40-1.fc36.x86_64 74/152

9 99.73 Upgrading : vim-minimal-2:9.0.246-1.fc36.x86_64 75/152

9 99.74 Upgrading : libcap-ng-0.8.3-1.fc36.x86_64 76/152

9 99.75 Cleanup : fedora-release-common-36-17.noarch 77/152

9 99.75 Cleanup : yum-4.11.1-2.fc36.noarch 78/152

9 99.76 Running scriptlet: dnf-4.11.1-2.fc36.noarch 79/152

9 99.77 Cleanup : dnf-4.11.1-2.fc36.noarch 79/152

9 99.77 Running scriptlet: dnf-4.11.1-2.fc36.noarch 79/152

9 99.79 Cleanup : python3-dnf-4.11.1-2.fc36.noarch 80/152

9 99.80 Cleanup : dnf-data-4.11.1-2.fc36.noarch 81/152

9 100.1 Cleanup : filesystem-3.16-2.fc36.x86_64 82/152

9 100.2 Cleanup : fedora-repos-modular-36-1.noarch 83/152

9 100.2 Cleanup : util-linux-core-2.38-0.2.fc36.x86_64 84/152

9 100.2 Cleanup : systemd-libs-250.3-8.fc36.x86_64 85/152

9 100.2 Cleanup : pam-1.5.2-12.fc36.x86_64 86/152

9 100.2 Cleanup : python3-hawkey-0.66.0-1.fc36.x86_64 87/152

9 100.2 Cleanup : python3-libdnf-0.66.0-1.fc36.x86_64 88/152

9 100.2 Cleanup : libdnf-0.66.0-1.fc36.x86_64 89/152

9 100.2 Cleanup : libstdc++-12.0.1-0.16.fc36.x86_64 90/152

9 100.2 Cleanup : librepo-1.14.2-2.fc36.x86_64 91/152

9 100.3 Cleanup : glib2-2.72.0-2.fc36.x86_64 92/152

9 100.3 Cleanup : libmount-2.38-0.2.fc36.x86_64 93/152

9 100.3 Cleanup : libsolv-0.7.21-1.fc36.x86_64 94/152

9 100.3 Cleanup : python3-rpm-4.17.0-10.fc36.x86_64 95/152

9 100.3 Cleanup : rpm-build-libs-4.17.0-10.fc36.x86_64 96/152

9 100.3 Cleanup : elfutils-libs-0.186-3.fc36.x86_64 97/152

9 100.3 Cleanup : tpm2-tss-3.2.0-1.fc36.x86_64 98/152

9 100.3 Cleanup : rpm-sign-libs-4.17.0-10.fc36.x86_64 99/152

9 100.3 Cleanup : gnupg2-2.3.4-2.fc36.x86_64 100/152

9 100.3 Cleanup : rpm-4.17.0-10.fc36.x86_64 101/152

9 100.4 Cleanup : rpm-libs-4.17.0-10.fc36.x86_64 102/152

9 100.4 Cleanup : libarchive-3.5.3-1.fc36.x86_64 103/152

9 100.4 Cleanup : gnutls-3.7.3-2.fc36.x86_64 104/152

9 100.4 Cleanup : libxml2-2.9.13-1.fc36.x86_64 105/152

9 100.4 Running scriptlet: authselect-1.3.0-10.fc36.x86_64 106/152

9 100.4 Cleanup : authselect-1.3.0-10.fc36.x86_64 106/152

9 100.4 Cleanup : curl-7.82.0-2.fc36.x86_64 107/152

9 100.4 Cleanup : libcurl-7.82.0-2.fc36.x86_64 108/152

9 100.4 Cleanup : libblkid-2.38-0.2.fc36.x86_64 109/152

9 100.4 Cleanup : shadow-utils-2:4.11.1-2.fc36.x86_64 110/152

9 100.5 Cleanup : lua-libs-5.4.4-1.fc36.x86_64 111/152

9 100.5 Cleanup : libgcrypt-1.10.1-1.fc36.x86_64 112/152

9 100.5 Cleanup : vim-minimal-2:8.2.4621-1.fc36.x86_64 113/152

9 100.5 Cleanup : libcap-ng-0.8.2-9.fc36.x86_64 114/152

9 100.5 Cleanup : authselect-libs-1.3.0-10.fc36.x86_64 115/152

9 100.5 Cleanup : pam-libs-1.5.2-12.fc36.x86_64 116/152

9 100.5 Cleanup : libgpg-error-1.44-1.fc36.x86_64 117/152

9 100.5 Cleanup : elfutils-libelf-0.186-3.fc36.x86_64 118/152

9 100.5 Cleanup : zchunk-libs-1.2.1-1.fc36.x86_64 119/152

9 100.5 Cleanup : libgomp-12.0.1-0.16.fc36.x86_64 120/152

9 100.5 Cleanup : libzstd-1.5.2-1.fc36.x86_64 121/152

9 100.5 Cleanup : pcre2-10.39-1.fc36.1.x86_64 122/152

9 100.5 Cleanup : fedora-repos-36-1.noarch 123/152

9 100.5 Cleanup : setup-2.13.9.1-3.fc36.noarch 124/152

9 100.5 Cleanup : fedora-release-container-36-17.noarch 125/152

9 100.6 Cleanup : fedora-release-identity-container-36-17.noarch 126/152

9 100.6 Cleanup : fedora-gpg-keys-36-1.noarch 127/152

9 100.6 Cleanup : pcre2-syntax-10.39-1.fc36.1.noarch 128/152

9 100.6 Cleanup : vim-data-2:8.2.4621-1.fc36.noarch 129/152

9 100.6 Cleanup : elfutils-default-yama-scope-0.186-3.fc36.noarch 130/152

9 100.6 Cleanup : libreport-filesystem-2.17.1-1.fc36.noarch 131/152

9 100.6 Cleanup : nettle-3.7.3-3.fc36.x86_64 132/152

9 100.6 Cleanup : openldap-compat-2.6.1-2.fc36.x86_64 133/152

9 100.6 Cleanup : openldap-2.6.1-2.fc36.x86_64 134/152

9 100.6 Cleanup : libsmartcols-2.38-0.2.fc36.x86_64 135/152

9 100.7 Cleanup : python3-libs-3.10.4-1.fc36.x86_64 136/152

9 100.7 Cleanup : python3-3.10.4-1.fc36.x86_64 137/152

9 100.7 Cleanup : libtirpc-1.3.2-1.rc1.fc36.1.x86_64 138/152

9 100.7 Cleanup : krb5-libs-1.19.2-6.fc36.x86_64 139/152

9 100.7 Cleanup : ca-certificates-2021.2.52-3.fc36.noarch 140/152

9 100.7 Cleanup : coreutils-9.0-5.fc36.x86_64 141/152

9 100.7 Cleanup : openssl-libs-1:3.0.2-4.fc36.x86_64 142/152

9 100.8 Cleanup : libuuid-2.38-0.2.fc36.x86_64 143/152

9 100.8 Cleanup : zlib-1.2.11-31.fc36.x86_64 144/152

9 100.8 Cleanup : libidn2-2.3.2-4.fc36.x86_64 145/152

9 100.8 Cleanup : crypto-policies-20220203-2.git112f859.fc36.noarc 146/152

9 100.8 Cleanup : coreutils-common-9.0-5.fc36.x86_64 147/152

9 100.8 Cleanup : glibc-2.35-4.fc36.x86_64 148/152

9 100.8 Cleanup : glibc-minimal-langpack-2.35-4.fc36.x86_64 149/152

9 100.8 Cleanup : glibc-common-2.35-4.fc36.x86_64 150/152

9 100.9 Cleanup : tzdata-2022a-1.fc36.noarch 151/152

9 100.9 Cleanup : libgcc-12.0.1-0.16.fc36.x86_64 152/152

9 100.9 Running scriptlet: libgcc-12.0.1-0.16.fc36.x86_64 152/152

9 100.9 Running scriptlet: ca-certificates-2022.2.54-1.2.fc36.noarch 152/152

9 102.0 Running scriptlet: authselect-libs-1.4.0-1.fc36.x86_64 152/152

9 102.1 Running scriptlet: rpm-4.17.1-3.fc36.x86_64 152/152

9 102.1 Running scriptlet: filesystem-3.18-2.fc36.x86_64 152/152

9 102.1 Running scriptlet: libgcc-12.0.1-0.16.fc36.x86_64 152/152

9 102.4 Verifying : authselect-1.4.0-1.fc36.x86_64 1/152

9 102.4 Verifying : authselect-1.3.0-10.fc36.x86_64 2/152

9 102.4 Verifying : authselect-libs-1.4.0-1.fc36.x86_64 3/152

9 102.4 Verifying : authselect-libs-1.3.0-10.fc36.x86_64 4/152

9 102.4 Verifying : ca-certificates-2022.2.54-1.2.fc36.noarch 5/152

9 102.4 Verifying : ca-certificates-2021.2.52-3.fc36.noarch 6/152

9 102.4 Verifying : coreutils-9.0-8.fc36.x86_64 7/152

9 102.4 Verifying : coreutils-9.0-5.fc36.x86_64 8/152

9 102.4 Verifying : coreutils-common-9.0-8.fc36.x86_64 9/152

9 102.4 Verifying : coreutils-common-9.0-5.fc36.x86_64 10/152

9 102.4 Verifying : crypto-policies-20220428-1.gitdfb10ea.fc36.noarc 11/152

9 102.4 Verifying : crypto-policies-20220203-2.git112f859.fc36.noarc 12/152

9 102.4 Verifying : curl-7.82.0-7.fc36.x86_64 13/152

9 102.4 Verifying : curl-7.82.0-2.fc36.x86_64 14/152

9 102.4 Verifying : dnf-4.13.0-1.fc36.noarch 15/152

9 102.4 Verifying : dnf-4.11.1-2.fc36.noarch 16/152

9 102.4 Verifying : dnf-data-4.13.0-1.fc36.noarch 17/152

9 102.4 Verifying : dnf-data-4.11.1-2.fc36.noarch 18/152

9 102.4 Verifying : elfutils-default-yama-scope-0.187-4.fc36.noarch 19/152

9 102.4 Verifying : elfutils-default-yama-scope-0.186-3.fc36.noarch 20/152

9 102.4 Verifying : elfutils-libelf-0.187-4.fc36.x86_64 21/152

9 102.4 Verifying : elfutils-libelf-0.186-3.fc36.x86_64 22/152

9 102.4 Verifying : elfutils-libs-0.187-4.fc36.x86_64 23/152

9 102.4 Verifying : elfutils-libs-0.186-3.fc36.x86_64 24/152

9 102.4 Verifying : fedora-gpg-keys-36-4.noarch 25/152

9 102.4 Verifying : fedora-gpg-keys-36-1.noarch 26/152

9 102.4 Verifying : fedora-release-common-36-18.noarch 27/152

9 102.4 Verifying : fedora-release-common-36-17.noarch 28/152

9 102.4 Verifying : fedora-release-container-36-18.noarch 29/152

9 102.4 Verifying : fedora-release-container-36-17.noarch 30/152

9 102.4 Verifying : fedora-release-identity-container-36-18.noarch 31/152

9 102.4 Verifying : fedora-release-identity-container-36-17.noarch 32/152

9 102.4 Verifying : fedora-repos-36-4.noarch 33/152

9 102.4 Verifying : fedora-repos-36-1.noarch 34/152

9 102.4 Verifying : fedora-repos-modular-36-4.noarch 35/152

9 102.4 Verifying : fedora-repos-modular-36-1.noarch 36/152

9 102.4 Verifying : filesystem-3.18-2.fc36.x86_64 37/152

9 102.4 Verifying : filesystem-3.16-2.fc36.x86_64 38/152

9 102.4 Verifying : glib2-2.72.3-1.fc36.x86_64 39/152

9 102.4 Verifying : glib2-2.72.0-2.fc36.x86_64 40/152

9 102.4 Verifying : glibc-2.35-15.fc36.x86_64 41/152

9 102.4 Verifying : glibc-2.35-4.fc36.x86_64 42/152

9 102.4 Verifying : glibc-common-2.35-15.fc36.x86_64 43/152

9 102.4 Verifying : glibc-common-2.35-4.fc36.x86_64 44/152

9 102.4 Verifying : glibc-minimal-langpack-2.35-15.fc36.x86_64 45/152

9 102.4 Verifying : glibc-minimal-langpack-2.35-4.fc36.x86_64 46/152

9 102.4 Verifying : gnupg2-2.3.7-3.fc36.x86_64 47/152

9 102.4 Verifying : gnupg2-2.3.4-2.fc36.x86_64 48/152

9 102.4 Verifying : gnutls-3.7.7-1.fc36.x86_64 49/152

9 102.4 Verifying : gnutls-3.7.3-2.fc36.x86_64 50/152

9 102.4 Verifying : krb5-libs-1.19.2-11.fc36.x86_64 51/152

9 102.4 Verifying : krb5-libs-1.19.2-6.fc36.x86_64 52/152

9 102.4 Verifying : libarchive-3.5.3-3.fc36.x86_64 53/152

9 102.4 Verifying : libarchive-3.5.3-1.fc36.x86_64 54/152

9 102.4 Verifying : libblkid-2.38-1.fc36.x86_64 55/152

9 102.4 Verifying : libblkid-2.38-0.2.fc36.x86_64 56/152

9 102.4 Verifying : libcap-ng-0.8.3-1.fc36.x86_64 57/152

9 102.4 Verifying : libcap-ng-0.8.2-9.fc36.x86_64 58/152

9 102.4 Verifying : libcurl-7.82.0-7.fc36.x86_64 59/152

9 102.4 Verifying : libcurl-7.82.0-2.fc36.x86_64 60/152

9 102.4 Verifying : libdnf-0.68.0-1.fc36.x86_64 61/152

9 102.4 Verifying : libdnf-0.66.0-1.fc36.x86_64 62/152

9 102.4 Verifying : libgcc-12.2.1-1.fc36.x86_64 63/152

9 102.4 Verifying : libgcc-12.0.1-0.16.fc36.x86_64 64/152

9 102.4 Verifying : libgcrypt-1.10.1-3.fc36.x86_64 65/152

9 102.4 Verifying : libgcrypt-1.10.1-1.fc36.x86_64 66/152

9 102.4 Verifying : libgomp-12.2.1-1.fc36.x86_64 67/152

9 102.4 Verifying : libgomp-12.0.1-0.16.fc36.x86_64 68/152

9 102.4 Verifying : libgpg-error-1.45-1.fc36.x86_64 69/152

9 102.4 Verifying : libgpg-error-1.44-1.fc36.x86_64 70/152

9 102.4 Verifying : libidn2-2.3.3-1.fc36.x86_64 71/152

9 102.4 Verifying : libidn2-2.3.2-4.fc36.x86_64 72/152

9 102.4 Verifying : libmount-2.38-1.fc36.x86_64 73/152

9 102.4 Verifying : libmount-2.38-0.2.fc36.x86_64 74/152

9 102.4 Verifying : librepo-1.14.4-1.fc36.x86_64 75/152

9 102.4 Verifying : librepo-1.14.2-2.fc36.x86_64 76/152

9 102.4 Verifying : libreport-filesystem-2.17.2-1.fc36.noarch 77/152

9 102.4 Verifying : libreport-filesystem-2.17.1-1.fc36.noarch 78/152

9 102.4 Verifying : libsmartcols-2.38-1.fc36.x86_64 79/152

9 102.4 Verifying : libsmartcols-2.38-0.2.fc36.x86_64 80/152

9 102.4 Verifying : libsolv-0.7.22-1.fc36.x86_64 81/152

9 102.4 Verifying : libsolv-0.7.21-1.fc36.x86_64 82/152

9 102.4 Verifying : libstdc++-12.2.1-1.fc36.x86_64 83/152

9 102.4 Verifying : libstdc++-12.0.1-0.16.fc36.x86_64 84/152

9 102.4 Verifying : libtirpc-1.3.3-0.fc36.x86_64 85/152

9 102.4 Verifying : libtirpc-1.3.2-1.rc1.fc36.1.x86_64 86/152

9 102.4 Verifying : libuuid-2.38-1.fc36.x86_64 87/152

9 102.4 Verifying : libuuid-2.38-0.2.fc36.x86_64 88/152

9 102.4 Verifying : libxml2-2.9.14-1.fc36.x86_64 89/152

9 102.4 Verifying : libxml2-2.9.13-1.fc36.x86_64 90/152

9 102.4 Verifying : libzstd-1.5.2-2.fc36.x86_64 91/152

9 102.4 Verifying : libzstd-1.5.2-1.fc36.x86_64 92/152

9 102.4 Verifying : lua-libs-5.4.4-3.fc36.x86_64 93/152

9 102.4 Verifying : lua-libs-5.4.4-1.fc36.x86_64 94/152

9 102.4 Verifying : nettle-3.8-1.fc36.x86_64 95/152

9 102.4 Verifying : nettle-3.7.3-3.fc36.x86_64 96/152

9 102.4 Verifying : openldap-2.6.2-3.fc36.x86_64 97/152

9 102.4 Verifying : openldap-2.6.1-2.fc36.x86_64 98/152

9 102.4 Verifying : openldap-compat-2.6.2-3.fc36.x86_64 99/152

9 102.4 Verifying : openldap-compat-2.6.1-2.fc36.x86_64 100/152

9 102.4 Verifying : openssl-libs-1:3.0.5-1.fc36.x86_64 101/152

9 102.4 Verifying : openssl-libs-1:3.0.2-4.fc36.x86_64 102/152

9 102.4 Verifying : pam-1.5.2-13.fc36.x86_64 103/152

9 102.4 Verifying : pam-1.5.2-12.fc36.x86_64 104/152

9 102.4 Verifying : pam-libs-1.5.2-13.fc36.x86_64 105/152

9 102.4 Verifying : pam-libs-1.5.2-12.fc36.x86_64 106/152

9 102.4 Verifying : pcre2-10.40-1.fc36.x86_64 107/152

9 102.4 Verifying : pcre2-10.39-1.fc36.1.x86_64 108/152

9 102.4 Verifying : pcre2-syntax-10.40-1.fc36.noarch 109/152

9 102.4 Verifying : pcre2-syntax-10.39-1.fc36.1.noarch 110/152

9 102.4 Verifying : python3-3.10.6-1.fc36.x86_64 111/152

9 102.4 Verifying : python3-3.10.4-1.fc36.x86_64 112/152

9 102.4 Verifying : python3-dnf-4.13.0-1.fc36.noarch 113/152

9 102.4 Verifying : python3-dnf-4.11.1-2.fc36.noarch 114/152

9 102.4 Verifying : python3-hawkey-0.68.0-1.fc36.x86_64 115/152

9 102.4 Verifying : python3-hawkey-0.66.0-1.fc36.x86_64 116/152

9 102.4 Verifying : python3-libdnf-0.68.0-1.fc36.x86_64 117/152

9 102.4 Verifying : python3-libdnf-0.66.0-1.fc36.x86_64 118/152

9 102.4 Verifying : python3-libs-3.10.6-1.fc36.x86_64 119/152

9 102.4 Verifying : python3-libs-3.10.4-1.fc36.x86_64 120/152

9 102.4 Verifying : python3-rpm-4.17.1-3.fc36.x86_64 121/152

9 102.4 Verifying : python3-rpm-4.17.0-10.fc36.x86_64 122/152

9 102.4 Verifying : rpm-4.17.1-3.fc36.x86_64 123/152

9 102.4 Verifying : rpm-4.17.0-10.fc36.x86_64 124/152

9 102.4 Verifying : rpm-build-libs-4.17.1-3.fc36.x86_64 125/152

9 102.4 Verifying : rpm-build-libs-4.17.0-10.fc36.x86_64 126/152

9 102.4 Verifying : rpm-libs-4.17.1-3.fc36.x86_64 127/152

9 102.4 Verifying : rpm-libs-4.17.0-10.fc36.x86_64 128/152

9 102.4 Verifying : rpm-sign-libs-4.17.1-3.fc36.x86_64 129/152

9 102.4 Verifying : rpm-sign-libs-4.17.0-10.fc36.x86_64 130/152

9 102.4 Verifying : setup-2.14.1-1.fc36.noarch 131/152

9 102.4 Verifying : setup-2.13.9.1-3.fc36.noarch 132/152

9 102.4 Verifying : shadow-utils-2:4.11.1-3.fc36.x86_64 133/152

9 102.4 Verifying : shadow-utils-2:4.11.1-2.fc36.x86_64 134/152

9 102.4 Verifying : systemd-libs-250.8-1.fc36.x86_64 135/152

9 102.4 Verifying : systemd-libs-250.3-8.fc36.x86_64 136/152

9 102.4 Verifying : tpm2-tss-3.2.0-3.fc36.x86_64 137/152

9 102.4 Verifying : tpm2-tss-3.2.0-1.fc36.x86_64 138/152

9 102.4 Verifying : tzdata-2022c-1.fc36.noarch 139/152

9 102.4 Verifying : tzdata-2022a-1.fc36.noarch 140/152

9 102.4 Verifying : util-linux-core-2.38-1.fc36.x86_64 141/152

9 102.4 Verifying : util-linux-core-2.38-0.2.fc36.x86_64 142/152

9 102.4 Verifying : vim-data-2:9.0.246-1.fc36.noarch 143/152

9 102.4 Verifying : vim-data-2:8.2.4621-1.fc36.noarch 144/152

9 102.4 Verifying : vim-minimal-2:9.0.246-1.fc36.x86_64 145/152

9 102.4 Verifying : vim-minimal-2:8.2.4621-1.fc36.x86_64 146/152

9 102.4 Verifying : yum-4.13.0-1.fc36.noarch 147/152

9 102.4 Verifying : yum-4.11.1-2.fc36.noarch 148/152

9 102.4 Verifying : zchunk-libs-1.2.2-1.fc36.x86_64 149/152

9 102.4 Verifying : zchunk-libs-1.2.1-1.fc36.x86_64 150/152

9 102.4 Verifying : zlib-1.2.11-32.fc36.x86_64 151/152

9 102.4 Verifying : zlib-1.2.11-31.fc36.x86_64 152/152

9 102.7

9 102.7 Upgraded:

9 102.7 authselect-1.4.0-1.fc36.x86_64

9 102.7 authselect-libs-1.4.0-1.fc36.x86_64

9 102.7 ca-certificates-2022.2.54-1.2.fc36.noarch

9 102.7 coreutils-9.0-8.fc36.x86_64

9 102.7 coreutils-common-9.0-8.fc36.x86_64

9 102.7 crypto-policies-20220428-1.gitdfb10ea.fc36.noarch

9 102.7 curl-7.82.0-7.fc36.x86_64

9 102.7 dnf-4.13.0-1.fc36.noarch

9 102.7 dnf-data-4.13.0-1.fc36.noarch

9 102.7 elfutils-default-yama-scope-0.187-4.fc36.noarch

9 102.7 elfutils-libelf-0.187-4.fc36.x86_64

9 102.7 elfutils-libs-0.187-4.fc36.x86_64

9 102.7 fedora-gpg-keys-36-4.noarch

9 102.7 fedora-release-common-36-18.noarch

9 102.7 fedora-release-container-36-18.noarch

9 102.7 fedora-release-identity-container-36-18.noarch

9 102.7 fedora-repos-36-4.noarch

9 102.7 fedora-repos-modular-36-4.noarch

9 102.7 filesystem-3.18-2.fc36.x86_64

9 102.7 glib2-2.72.3-1.fc36.x86_64

9 102.7 glibc-2.35-15.fc36.x86_64

9 102.7 glibc-common-2.35-15.fc36.x86_64

9 102.7 glibc-minimal-langpack-2.35-15.fc36.x86_64

9 102.7 gnupg2-2.3.7-3.fc36.x86_64

9 102.7 gnutls-3.7.7-1.fc36.x86_64

9 102.7 krb5-libs-1.19.2-11.fc36.x86_64

9 102.7 libarchive-3.5.3-3.fc36.x86_64

9 102.7 libblkid-2.38-1.fc36.x86_64

9 102.7 libcap-ng-0.8.3-1.fc36.x86_64

9 102.7 libcurl-7.82.0-7.fc36.x86_64

9 102.7 libdnf-0.68.0-1.fc36.x86_64

9 102.7 libgcc-12.2.1-1.fc36.x86_64

9 102.7 libgcrypt-1.10.1-3.fc36.x86_64

9 102.7 libgomp-12.2.1-1.fc36.x86_64

9 102.7 libgpg-error-1.45-1.fc36.x86_64

9 102.7 libidn2-2.3.3-1.fc36.x86_64

9 102.7 libmount-2.38-1.fc36.x86_64

9 102.7 librepo-1.14.4-1.fc36.x86_64

9 102.7 libreport-filesystem-2.17.2-1.fc36.noarch

9 102.7 libsmartcols-2.38-1.fc36.x86_64

9 102.7 libsolv-0.7.22-1.fc36.x86_64

9 102.7 libstdc++-12.2.1-1.fc36.x86_64

9 102.7 libtirpc-1.3.3-0.fc36.x86_64

9 102.7 libuuid-2.38-1.fc36.x86_64

9 102.7 libxml2-2.9.14-1.fc36.x86_64

9 102.7 libzstd-1.5.2-2.fc36.x86_64

9 102.7 lua-libs-5.4.4-3.fc36.x86_64

9 102.7 nettle-3.8-1.fc36.x86_64

9 102.7 openldap-2.6.2-3.fc36.x86_64

9 102.7 openldap-compat-2.6.2-3.fc36.x86_64

9 102.7 openssl-libs-1:3.0.5-1.fc36.x86_64

9 102.7 pam-1.5.2-13.fc36.x86_64

9 102.7 pam-libs-1.5.2-13.fc36.x86_64

9 102.7 pcre2-10.40-1.fc36.x86_64

9 102.7 pcre2-syntax-10.40-1.fc36.noarch

9 102.7 python3-3.10.6-1.fc36.x86_64

9 102.7 python3-dnf-4.13.0-1.fc36.noarch

9 102.7 python3-hawkey-0.68.0-1.fc36.x86_64

9 102.7 python3-libdnf-0.68.0-1.fc36.x86_64

9 102.7 python3-libs-3.10.6-1.fc36.x86_64

9 102.7 python3-rpm-4.17.1-3.fc36.x86_64

9 102.7 rpm-4.17.1-3.fc36.x86_64

9 102.7 rpm-build-libs-4.17.1-3.fc36.x86_64

9 102.7 rpm-libs-4.17.1-3.fc36.x86_64

9 102.7 rpm-sign-libs-4.17.1-3.fc36.x86_64

9 102.7 setup-2.14.1-1.fc36.noarch

9 102.7 shadow-utils-2:4.11.1-3.fc36.x86_64

9 102.7 systemd-libs-250.8-1.fc36.x86_64

9 102.7 tpm2-tss-3.2.0-3.fc36.x86_64

9 102.7 tzdata-2022c-1.fc36.noarch

9 102.7 util-linux-core-2.38-1.fc36.x86_64

9 135.3 Package tzdata-2022c-1.fc36.noarch is already installed.

9 135.3 Error: Unable to find a match: firefox-98.0*


executor failed running [/bin/sh -c dnf upgrade -y --refresh && dnf install -y chromedriver-${CHROMIUM_VERSION} chromium-${CHROMIUM_VERSION} firefox-${FIREFOX_VERSION} npm nodejs python3-pip tzdata xorg-x11-server-Xvfb-${XVFB_VERSION} && dnf clean all]: exit code: 1

GCsabi commented 1 year ago

changing 1 line in the dockerfile solves the problem: ENV FIREFOX_VERSION 98.0 --> ENV FIREFOX_VERSION 104.0

ppodgorsek commented 1 year ago

This has been fixed in issue #417 and is now part of the latest image, along with release 5.0.0.