Skip to content
Dockerfile 205 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
Pierre Ozoux's avatar
Pierre Ozoux committed
COPY nginx.conf /etc/nginx/nginx.conf
CMD ["nginx", "-g", "daemon off;"]