chore: automate setup

This commit is contained in:
Elio Bischof
2023-05-19 16:20:01 +02:00
parent 900d83dfbe
commit b1a0f4b6d5
6 changed files with 113 additions and 0 deletions

6
acceptance/Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
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" ]