Skip to content

Commit 5389df6

Browse files
authored
Merge pull request #864 from cloudfoundry/parameterize-base-image
Allow Dockerfile users to set the base image with a build arg
2 parents 142de18 + 72ca379 commit 5389df6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM ubuntu:bionic
1+
ARG base_image=ubuntu:bionic
2+
FROM ${base_image}
23

34
RUN apt-get update && apt-get install -y \
45
build-essential \

0 commit comments

Comments
 (0)