blob: 8fe375a466ca8991fdaae1757c654bbc93c08483 [file] [log] [blame]
vexxhost-bot6e0e4362024-06-01 21:24:08 +02001# SPDX-License-Identifier: Apache-2.0
2# Atmosphere-Rebuild-Time: 2024-05-30T20:29:01Z
Mohammed Naserda994232024-04-13 12:34:01 -04003
4FROM quay.io/centos/centos:stream9
Mohammed Naser65cda132024-05-02 14:34:08 -04005ARG OVS_SERIES=3.2
vexxhost-bot9eb21342024-06-02 03:00:33 +02006ARG OVS_VERSION=${OVS_SERIES}.0-80
Mohammed Naserda994232024-04-13 12:34:01 -04007RUN <<EOF sh -xe
8dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs install \
9 centos-release-nfv-openvswitch.noarch
10dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs install \
11 openvswitch${OVS_SERIES}-${OVS_VERSION}.el9s iptables
12dnf -y clean all
13rm -rf /var/cache/dnf
14EOF