Files
zitadel/acceptance/Dockerfile

7 lines
173 B
Docker
Raw Normal View History

2023-05-19 16:20:01 +02:00
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" ]