From 214825581ab5b3802645cba2e5d8c26dc2c0bb83 Mon Sep 17 00:00:00 2001 From: Eric Miller <1588827+sosheskaz@users.noreply.github.com> Date: Mon, 22 Apr 2024 19:07:48 -0500 Subject: [PATCH] Build image from base arg --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 23f1e9b..3a7e98f 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ -FROM debian:latest +ARG BASE_IMAGE=debian:latest +FROM ${BASE_IMAGE} COPY . /infinitude WORKDIR /infinitude