dockerfiles/webdav/Dockerfile

7 lines
144 B
Docker
Raw Permalink Normal View History

2022-08-16 16:50:44 +02:00
FROM alpine:3.16
2022-03-07 16:57:07 +01:00
RUN apk add --no-cache nginx nginx-mod-http-dav-ext
COPY nginx.conf /etc/nginx/nginx.conf
CMD ["nginx", "-g", "daemon off;"]