From 3902b40bc10cb7e823143bbde88b9c0aea83487f Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 27 Jun 2021 15:55:52 +1000 Subject: [PATCH] remove tags --- alpine/5/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/alpine/5/Dockerfile b/alpine/5/Dockerfile index 4239d97..1a726fc 100644 --- a/alpine/5/Dockerfile +++ b/alpine/5/Dockerfile @@ -39,7 +39,7 @@ RUN mv /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini # Install PHP extensions # https://hub.docker.com/r/mlocati/php-extension-installer/tags -COPY --from=mlocati/php-extension-installer/1.2.28 /usr/bin/install-php-extensions /usr/local/bin/ +COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ RUN install-php-extensions \ bcmath \ @@ -88,8 +88,7 @@ WORKDIR /var/www/app # Do not remove this ENV ENV IS_DOCKER true -RUN /usr/local/bin/composer install --no-dev --quiet \ - && rm .env +RUN /usr/local/bin/composer install --no-dev --quiet # Override the environment settings from projects .env file ENV APP_ENV production