From cca82eb0d60ee36a60a907c71f920e75a2155650 Mon Sep 17 00:00:00 2001 From: Pete Freitag Date: Mon, 23 May 2022 11:53:41 -0400 Subject: [PATCH] Update download of git changed script --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 376eb1c..d70028a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,17 @@ FROM foundeo/minibox:latest AS build +RUN apk add curl + +RUN curl --location -o /tmp/fixinator-git-changed.cfc https://github.com/foundeo/fixinator-git-changed/raw/main/fixinator-git-changed.cfc + RUN box install fixinator FROM foundeo/minibox:latest RUN mkdir -p /opt/fixinator/ -RUN curl --location -o /opt/fixinator/fixinator-git-changed.cfc https://github.com/foundeo/fixinator-git-changed/raw/main/fixinator-git-changed.cfc - ENV LUCEE_EXTENSIONS="$LUCEE_EXTENSIONS,37C61C0A-5D7E-4256-8572639BE0CF5838;name=ESAPI extension;version=2.1.0.18,66E312DD-D083-27C0-64189D16753FD6F0;name=PDF Extension;version=1.1.0.7" COPY --from=build /root/.CommandBox/cfml/modules /root/.CommandBox/cfml/modules + +COPY --from=build /tmp/fixinator-git-changed.cfc /opt/fixinator/fixinator-git-changed.cfc