vexxhost-bot | 6e0e436 | 2024-06-01 21:24:08 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: Apache-2.0 |
| 2 | # Atmosphere-Rebuild-Time: 2024-05-30T20:29:01Z |
Mohammed Naser | da99423 | 2024-04-13 12:34:01 -0400 | [diff] [blame] | 3 | |
| 4 | FROM quay.io/centos/centos:stream9 |
Mohammed Naser | 65cda13 | 2024-05-02 14:34:08 -0400 | [diff] [blame] | 5 | ARG OVS_SERIES=3.2 |
vexxhost-bot | 9eb2134 | 2024-06-02 03:00:33 +0200 | [diff] [blame^] | 6 | ARG OVS_VERSION=${OVS_SERIES}.0-80 |
Mohammed Naser | da99423 | 2024-04-13 12:34:01 -0400 | [diff] [blame] | 7 | RUN <<EOF sh -xe |
| 8 | dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs install \ |
| 9 | centos-release-nfv-openvswitch.noarch |
| 10 | dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs install \ |
| 11 | openvswitch${OVS_SERIES}-${OVS_VERSION}.el9s iptables |
| 12 | dnf -y clean all |
| 13 | rm -rf /var/cache/dnf |
| 14 | EOF |