Should only use `ADD` for URLs (and even then, `curl` or `wget` are preferred, for numerous reasons, even within this repo) and when extracting archive contents as part of the `ADD` operation; otherwise `COPY` is clearer and (slightly) more efficient.
		
			
				
	
	
		
			30 lines
		
	
	
		
			860 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			860 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM nginx:alpine
 | 
						|
 | 
						|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
 | 
						|
 | 
						|
COPY nginx.conf /etc/nginx/
 | 
						|
 | 
						|
# If you're in China, or you need to change sources, will be set CHANGE_SOURCE to true in .env.
 | 
						|
 | 
						|
ARG CHANGE_SOURCE=false
 | 
						|
RUN if [ ${CHANGE_SOURCE} = true ]; then \
 | 
						|
    # Change application source from dl-cdn.alpinelinux.org to aliyun source
 | 
						|
    sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories \
 | 
						|
;fi
 | 
						|
 | 
						|
RUN apk update \
 | 
						|
    && apk upgrade \
 | 
						|
    && apk add --no-cache bash \
 | 
						|
    && adduser -D -H -u 1000 -s /bin/bash www-data
 | 
						|
 | 
						|
ARG PHP_UPSTREAM_CONTAINER=php-fpm
 | 
						|
ARG PHP_UPSTREAM_PORT=9000
 | 
						|
 | 
						|
# 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
 | 
						|
 | 
						|
CMD ["nginx"]
 | 
						|
 | 
						|
EXPOSE 80 443
 |