Parameterize from url in apache dockerfile

Change-Id: I282f5c1f9b9ba38b1a1856fca4a755480d808cca
Signed-off-by: Sreejith Punnapuzha <sreejith.punnapuzha@outlook.com>
This commit is contained in:
Sreejith Punnapuzha 2020-10-29 10:55:58 -05:00
parent d34c3283ff
commit 0e77470ca9
1 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
FROM ubuntu:bionic
ARG FROM=docker.io/ubuntu:bionic
FROM ${FROM}
LABEL org.opencontainers.image.authors='airship-discuss@lists.airshipit.org, irc://#airshipit@freenode' \
org.opencontainers.image.url='https://airshipit.org' \
org.opencontainers.image.documentation='https://airship-images.readthedocs.org' \
org.opencontainers.image.documentation='https://airshipit.readthedocs.io' \
org.opencontainers.image.source='https://opendev.org/airship/images' \
org.opencontainers.image.vendor='The Airship Authors' \
org.opencontainers.image.licenses='Apache-2.0'