dockerfiles/webdav/Dockerfile

7 lines
144 B
Docker

FROM alpine:3.16
RUN apk add --no-cache nginx nginx-mod-http-dav-ext
COPY nginx.conf /etc/nginx/nginx.conf
CMD ["nginx", "-g", "daemon off;"]