willy.club/docker/Dockerfile

17 lines
403 B
Docker
Raw Normal View History

2022-12-29 01:53:33 +00:00
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"]