Update Dockerfile to allow override of FROM variable

Change-Id: I8c4d4402c22e7c68982207ff1216b8f9b1d0dd06
This commit is contained in:
Jerome Brette 2018-06-25 22:46:03 -05:00
parent 683d757995
commit d6384cf596
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
FROM ubuntu:16.04
ARG FROM=ubuntu:16.04
FROM ${FROM}
RUN apt-get update && apt-get install -y qemu-kvm dnsmasq bridge-utils mkisofs curl jq wget iptables
RUN apt-get clean