7 lines
144 B
Docker
7 lines
144 B
Docker
|
FROM alpine:3.15
|
||
|
|
||
|
RUN apk add --no-cache nginx nginx-mod-http-dav-ext
|
||
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||
|
|
||
|
CMD ["nginx", "-g", "daemon off;"]
|