Skip to content

Commit

Permalink
IN-347 Update ENV declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobSanford committed Aug 24, 2024
1 parent 5c55c12 commit fa78e8b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM ghcr.io/unb-libraries/nginx:2.x
MAINTAINER UNB Libraries <libsupport@unb.ca>

ENV COMPOSER_INSTALL "composer install --prefer-dist --no-interaction --no-progress"
ENV COMPOSER_MEMORY_LIMIT -1
ENV COMPOSER_PATH /usr/local/bin
ENV COMPOSER_EXIT_ON_PATCH_FAILURE 1
ENV PHP_CONFD_DIR /etc/php7/conf.d
ENV PHP_APP_INI_FILE $PHP_CONFD_DIR/zz_app.ini
ENV PHP_FPM_CONFD_DIR /etc/php7/php-fpm.d
ENV PHP_FPM_APP_CONF_FILE $PHP_FPM_CONFD_DIR/zz_app.conf
ENV PHP_FPM_ERROR_LOG /proc/self/fd/2
ENV PHP_PID_DIR /var/run/php
ENV COMPOSER_INSTALL=""composer install --prefer-dist --no-interaction --no-progress""
ENV COMPOSER_MEMORY_LIMIT="-1"
ENV COMPOSER_PATH="/usr/local/bin"
ENV COMPOSER_EXIT_ON_PATCH_FAILURE="1"
ENV PHP_CONFD_DIR="/etc/php7/conf.d"
ENV PHP_APP_INI_FILE="$PHP_CONFD_DIR/zz_app.ini"
ENV PHP_FPM_CONFD_DIR="/etc/php7/php-fpm.d"
ENV PHP_FPM_APP_CONF_FILE="$PHP_FPM_CONFD_DIR/zz_app.conf"
ENV PHP_FPM_ERROR_LOG="/proc/self/fd/2"
ENV PHP_PID_DIR="/var/run/php"

COPY ./build /build

Expand Down

0 comments on commit fa78e8b

Please sign in to comment.