From 40ab52a4afc8d66b73c84e6c9f84dc7b97f95838 Mon Sep 17 00:00:00 2001 From: Vlado Tesanovic Date: Mon, 1 Apr 2019 13:42:35 +0200 Subject: [PATCH 1/2] Fixed to a vorking version of nginx:1.15.7 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8344e96..3b12983 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Alpine Image for Nginx and PHP # NGINX x ALPINE. -FROM nginx:mainline-alpine +FROM nginx:1.15.7-alpine # MAINTAINER OF THE PACKAGE. LABEL maintainer="Neo Ighodaro " @@ -17,7 +17,7 @@ ADD https://php.codecasts.rocks/php-alpine.rsa.pub /etc/apk/keys/php-alpine.rsa. # IMAGE ARGUMENTS WITH DEFAULTS. ARG PHP_VERSION=7.2 ARG ALPINE_VERSION=3.7 -ARG COMPOSER_HASH=544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061 +ARG COMPOSER_HASH=$(wget -q -O - https://composer.github.io/installer.sig) ARG NGINX_HTTP_PORT=80 ARG NGINX_HTTPS_PORT=443 From 74141358a8695190311ed9143ed4ff98ae49ba51 Mon Sep 17 00:00:00 2001 From: Vlado Tesanovic Date: Mon, 1 Apr 2019 13:45:17 +0200 Subject: [PATCH 2/2] New composer hash version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3b12983..b4d5382 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ADD https://php.codecasts.rocks/php-alpine.rsa.pub /etc/apk/keys/php-alpine.rsa. # IMAGE ARGUMENTS WITH DEFAULTS. ARG PHP_VERSION=7.2 ARG ALPINE_VERSION=3.7 -ARG COMPOSER_HASH=$(wget -q -O - https://composer.github.io/installer.sig) +ARG COMPOSER_HASH=48e3236262b34d30969dca3c37281b3b4bbe3221bda826ac6a9a62d6444cdb0dcd0615698a5cbe587c3f0fe57a54d8f5 ARG NGINX_HTTP_PORT=80 ARG NGINX_HTTPS_PORT=443