From 931570677b2f9c8aac9b343542394b4bdb3fa2fd Mon Sep 17 00:00:00 2001 From: Dominik Chilla <43314918+chillout2k@users.noreply.github.com> Date: Thu, 20 Oct 2022 20:38:20 +0200 Subject: [PATCH] OCI build plan changed --- OCI/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OCI/Dockerfile b/OCI/Dockerfile index b30de9b..336a62c 100644 --- a/OCI/Dockerfile +++ b/OCI/Dockerfile @@ -1,5 +1,5 @@ -ARG ARCH -FROM $ARCH/alpine +ARG PARENT_IMAGE=alpine:3.16 +FROM ${PARENT_IMAGE} LABEL maintainer="Dominik Chilla " LABEL git_repo="https://github.com/chillout2k/exota-milter" @@ -23,4 +23,4 @@ RUN chown -R exota-milter /app /cmd \ VOLUME [ "/socket", "/data" ] USER exota-milter -CMD [ "/cmd" ] \ No newline at end of file +CMD [ "/cmd" ]