nginx-nextcloud/Dockerfile

8 lines
164 B
Docker
Raw Permalink Normal View History

2018-10-12 11:54:04 +00:00
FROM nginx:alpine
COPY nginx.conf /etc/nginx/nginx.conf
RUN set -x ; \
addgroup -g 82 -S www-data ; \
adduser -u 82 -D -S -G www-data www-data && exit 0 ; exit 1