23 lines
494 B
Docker
23 lines
494 B
Docker
FROM alpine:latest
|
|
|
|
# Nginx package is available in the Alpine Linux repositories. To install it run:
|
|
RUN apk update && \
|
|
apk add nginx php81-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 ./docker/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
COPY ./ /www
|
|
|
|
COPY ./docker/run.sh /opt/run.sh
|
|
|
|
RUN chmod +x /opt/run.sh
|
|
|
|
CMD ["/opt/run.sh"] |