17 lines
403 B
Docker
17 lines
403 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
# Nginx package is available in the Alpine Linux repositories. To install it run:
|
||
|
RUN apk update && \
|
||
|
apk add nginx php-fpm
|
||
|
|
||
|
# Creating new user and group 'www' for nginx
|
||
|
RUN adduser -D -g 'www' www
|
||
|
|
||
|
# Create a directory for html files
|
||
|
RUN mkdir /www && \
|
||
|
chown -R www:www /var/lib/nginx && \
|
||
|
chown -R www:www /www
|
||
|
|
||
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||
|
|
||
|
CMD ["nginx"]
|