blob: 896923f6489f8eb4be06386ba588ceb9a0e14439 [file] [log] [blame]
# SPDX-License-Identifier: Apache-2.0
# Atmosphere-Rebuild-Time: 2024-06-17T13:34:17Z
FROM quay.io/centos/centos:stream9
ARG OVS_SERIES=3.2
ARG OVS_VERSION=${OVS_SERIES}.0-80
RUN <<EOF sh -xe
dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs install \
centos-release-nfv-openvswitch.noarch
dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs install \
openvswitch${OVS_SERIES}-${OVS_VERSION}.el9s iptables
dnf -y clean all
rm -rf /var/cache/dnf
EOF