Skip to content
Dockerfile 217 B
Newer Older
Pierre Ozoux's avatar
Pierre Ozoux committed
ARG VERSION
FROM libresh/nextcloud:${VERSION} as builder
FROM nginx:alpine
COPY --from=builder /usr/src/nextcloud /usr/src/nextcloud
COPY default.conf.template /etc/nginx/templates/
Pierre Ozoux's avatar
Pierre Ozoux committed
CMD ["nginx", "-g", "daemon off;"]