mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
7 lines
173 B
Docker
7 lines
173 B
Docker
|
FROM alpine:latest AS gen-keys
|
||
|
COPY build/local/keys.sh keys.sh
|
||
|
RUN chmod +x /keys.sh
|
||
|
ENTRYPOINT [ "/keys.sh" ]
|
||
|
|
||
|
FROM scratch AS copy-keys
|
||
|
COPY --from=gen-keys /.keys /.keys
|