zitadel/build/docker/prod
Florian Forster 2741a2b973
Revert "disable login and console in docker" (#140)
* Revert "disable login and console in docker (#138)"

This reverts commit 0cd7f8e368.

* Update prod
2020-05-27 13:50:08 +02:00

15 lines
406 B
Plaintext

# This Stage prepares the user in the container and copies the files
FROM alpine:latest as prepare
RUN adduser -D zitadel
COPY .artifacts/zitadel-linux-amd64 /zitadel
COPY cmd/zitadel/*.yaml /
RUN chmod a+x /zitadel
# This Stage is intended as production image
FROM scratch as final
COPY --from=prepare /etc/passwd /etc/passwd
COPY --from=prepare / /
USER zitadel
HEALTHCHECK NONE
ENTRYPOINT ["/zitadel"]