mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 06:42:59 +00:00
7 lines
173 B
Docker
7 lines
173 B
Docker
FROM golang:1.19-alpine
|
|
RUN apk add curl jq
|
|
RUN go install github.com/zitadel/zitadel-tools@v0.4.0
|
|
COPY setup.sh /setup.sh
|
|
RUN chmod +x /setup.sh
|
|
ENTRYPOINT [ "/setup.sh" ]
|