blob: 02e0ee92bdc73fa2515646589ffff4fd6a387b75 [file] [log] [blame]
Mohammed Naser86615772024-06-01 10:02:09 -04001# SPDX-License-Identifier: Apache-2.0
Mohammed Naser735efe22024-06-26 23:46:25 -04002# Atmosphere-Rebuild-Time: 2024-06-26T17:38:39Z
Mohammed Naserda994232024-04-13 12:34:01 -04003
4FROM quay.io/centos/centos:stream9
vexxhost-bot02d7ca42024-06-27 21:52:07 +02005ADD --chmod=755 https://github.com/krallin/tini/releases/download/v0.19.0/tini /tini
Mohammed Naser65cda132024-05-02 14:34:08 -04006ARG OVS_SERIES=3.2
Mohammed Naserbfbf31e2024-05-30 20:45:38 -04007ARG OVS_VERSION=${OVS_SERIES}.0-80
Mohammed Naserda994232024-04-13 12:34:01 -04008RUN <<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