2016-07-26 18:19:31 +02:00
|
|
|
FROM nginx:alpine
|
2016-05-06 16:04:02 +02:00
|
|
|
|
2018-03-16 14:09:15 +01:00
|
|
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
2016-05-06 16:04:02 +02:00
|
|
|
|
2018-04-04 14:13:11 +02:00
|
|
|
COPY nginx.conf /etc/nginx/
|
2016-05-06 16:04:02 +02:00
|
|
|
|
2017-11-14 14:01:07 +01:00
|
|
|
# If you're in China, or you need to change sources, will be set CHANGE_SOURCE to true in .env.
|
2016-07-24 04:49:57 +02:00
|
|
|
|
2017-11-14 14:01:07 +01:00
|
|
|
ARG CHANGE_SOURCE=false
|
|
|
|
RUN if [ ${CHANGE_SOURCE} = true ]; then \
|
|
|
|
# Change application source from dl-cdn.alpinelinux.org to aliyun source
|
2018-01-04 06:53:01 +01:00
|
|
|
sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories \
|
2017-11-14 14:01:07 +01:00
|
|
|
;fi
|
2017-02-15 03:20:18 +01:00
|
|
|
|
2016-07-26 19:41:52 +02:00
|
|
|
RUN apk update \
|
|
|
|
&& apk upgrade \
|
2018-11-13 13:44:51 +01:00
|
|
|
&& apk add --no-cache openssl \
|
2016-07-26 19:41:52 +02:00
|
|
|
&& apk add --no-cache bash \
|
2017-08-03 23:50:20 +02:00
|
|
|
&& adduser -D -H -u 1000 -s /bin/bash www-data
|
|
|
|
|
2017-11-14 14:01:07 +01:00
|
|
|
ARG PHP_UPSTREAM_CONTAINER=php-fpm
|
|
|
|
ARG PHP_UPSTREAM_PORT=9000
|
|
|
|
|
2017-08-03 23:50:20 +02:00
|
|
|
# Set upstream conf and remove the default conf
|
|
|
|
RUN echo "upstream php-upstream { server ${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT}; }" > /etc/nginx/conf.d/upstream.conf \
|
|
|
|
&& rm /etc/nginx/conf.d/default.conf
|
2016-05-06 16:04:02 +02:00
|
|
|
|
2018-11-13 13:44:51 +01:00
|
|
|
ADD ./startup.sh /opt/startup.sh
|
2019-01-08 08:24:32 +01:00
|
|
|
RUN sed -i 's/\r//g' /opt/startup.sh
|
2018-11-13 13:44:51 +01:00
|
|
|
CMD ["/bin/bash", "/opt/startup.sh"]
|
2016-05-06 16:04:02 +02:00
|
|
|
|
|
|
|
EXPOSE 80 443
|