From 9f0a5546fb87633a16707e09af9cde69d67fc4c5 Mon Sep 17 00:00:00 2001 From: Jacob Sanford Date: Sat, 24 Aug 2024 09:50:33 -0300 Subject: [PATCH] IN-347 Update ENV declarations --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8ce70f2..c78901c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,14 +3,14 @@ MAINTAINER UNB Libraries Systems ARG OMEKA_VERSION=3.1.2 -ENV OMEKA_ARCHIVE_FILE omeka-s-${OMEKA_VERSION}.zip -ENV OMEKA_DOWNLOAD_URL https://github.com/omeka/omeka-s/releases/download/v${OMEKA_VERSION}/${OMEKA_ARCHIVE_FILE} -ENV OMEKA_INSTALLED_MARKER ${APP_WEBROOT}/files/.omeka_installed -ENV SITE_URI exhibits.lib.unb.ca +ENV OMEKA_ARCHIVE_FILE="omeka-s-${OMEKA_VERSION}.zip" +ENV OMEKA_DOWNLOAD_URL="https://github.com/omeka/omeka-s/releases/download/v${OMEKA_VERSION}/${OMEKA_ARCHIVE_FILE}" +ENV OMEKA_INSTALLED_MARKER="${APP_WEBROOT}/files/.omeka_installed" +ENV SITE_URI="exhibits.lib.unb.ca" -ENV RSYNC_FLAGS --quiet -ENV RSYNC_COPY "rsync -a --inplace --no-compress ${RSYNC_FLAGS}" -ENV RSYNC_MOVE "${RSYNC_COPY} --remove-source-files" +ENV RSYNC_FLAGS="--quiet" +ENV RSYNC_COPY=""rsync -a --inplace --no-compress ${RSYNC_FLAGS}"" +ENV RSYNC_MOVE=""${RSYNC_COPY} --remove-source-files"" COPY build /build