From 23907f63b98fd1a26271355a7d41a3fb6e785f65 Mon Sep 17 00:00:00 2001 From: Daniel Mikusa Date: Fri, 27 Aug 2021 09:28:59 -0400 Subject: [PATCH] Switch to using a base image arg, so that the image can be passed into the dockerfile Signed-off-by: Daniel Mikusa --- scripts/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/Dockerfile b/scripts/Dockerfile index dc097b4..a73df99 100644 --- a/scripts/Dockerfile +++ b/scripts/Dockerfile @@ -1,4 +1,5 @@ -FROM bellsoft/liberica-openjdk-debian:11 +ARG base_image=ubuntu:bionic +FROM ${base_image} RUN apt-get update && apt-get install --no-install-recommends -y \ git \