mirror of
https://github.com/optim-enterprises-bv/openstack-helm-images.git
synced 2026-01-03 21:39:21 +00:00
As we are moving to bionic version, this patch is to add ubuntu bionic based ovs image to support ovs-dpdk. Also this patch removes the debian_dpdk image, as it doesn't work correctly on some CPUs. Change-Id: I3f720dfa0736cabbaa59406871b039d8762ce4de
9 lines
184 B
Docker
9 lines
184 B
Docker
FROM docker.io/ubuntu:bionic
|
|
LABEL maintainer="cheng1.li@intel.com"
|
|
|
|
RUN set -ex; \
|
|
apt-get update; \
|
|
apt-get install -y openvswitch-switch; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|