mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
1d0c8eff7f
* chore(dependabot): change dockerfile name * chore(build): fix file reference * chore(anchore): dockerfilename * chore(build): clean build file * chore(build): fix dependant job * chore(build): fix missing job
15 lines
406 B
Docker
15 lines
406 B
Docker
# 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"]
|