-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from vladotesanovic/master
Fixed to a working nginx version 1.15.7
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>" | ||
|
@@ -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=48e3236262b34d30969dca3c37281b3b4bbe3221bda826ac6a9a62d6444cdb0dcd0615698a5cbe587c3f0fe57a54d8f5 | ||
ARG NGINX_HTTP_PORT=80 | ||
ARG NGINX_HTTPS_PORT=443 | ||
|
||
|