
This PS updates all dockerfiles to allow base image over-rides as required by many consumers of OSH. Change-Id: I53daac9c1ec4707628565abc912116d8997eba16 Signed-off-by: Andrii Ostapenko <andrii.ostapenko@att.com>
9 lines
200 B
Docker
9 lines
200 B
Docker
ARG FROM=docker.io/ubuntu:bionic
|
|
FROM ${FROM}
|
|
LABEL maintainer="cheng1.li@intel.com"
|
|
|
|
RUN set -ex; \
|
|
apt-get update; \
|
|
apt-get install -y openvswitch-switch; \
|
|
rm -rf /var/lib/apt/lists/*
|