Skip to content

Commit 72ca379

Browse files
committed
Allow Dockerfile users to explicitly set the base image
Stil defaults to ubuntu:bionic Signed-off-by: Emily Casey <[email protected]>
1 parent e4c222d commit 72ca379

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)