10 lines
184 B
Docker
10 lines
184 B
Docker
|
FROM alpine:3.13
|
||
|
|
||
|
EXPOSE 80
|
||
|
|
||
|
RUN apk update && apk add -q --no-cache nginx && mkdir /run/nginx
|
||
|
|
||
|
COPY nextcloud.conf /etc/nginx/conf.d/default.conf
|
||
|
|
||
|
CMD ["nginx", "-g", "daemon off;"]
|