blob: 038bb4dc901d45477f20469d2abc235a3fb4f60e [file] [log] [blame]
vexxhost-bota62d9312024-06-01 21:13:59 +02001# SPDX-License-Identifier: Apache-2.0
vexxhost-bot4a8f0912024-06-28 22:34:23 +02002# Atmosphere-Rebuild-Time: 2024-06-28T12:14:26Z
Mohammed Naserd28fbaf2024-04-08 17:15:00 -04003
4FROM quay.io/centos/centos:stream9
Mohammed Naser8ebeaaf2024-06-27 19:27:57 -04005ADD --chmod=755 https://github.com/krallin/tini/releases/download/v0.19.0/tini /tini
Mohammed Naserd28fbaf2024-04-08 17:15:00 -04006ARG OVS_SERIES=3.1
7ARG OVS_VERSION=${OVS_SERIES}.0-65
8RUN <<EOF sh -xe
9dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs install \
10 centos-release-nfv-openvswitch.noarch
11dnf -y --setopt=install_weak_deps=False --setopt=tsflags=nodocs install \
12 openvswitch${OVS_SERIES}-${OVS_VERSION}.el9s iptables
13dnf -y clean all
14rm -rf /var/cache/dnf
15EOF