mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-10 13:13:46 +00:00
12 lines
238 B
Docker
12 lines
238 B
Docker
ARG GO_VERSION=1.17
|
|
|
|
#######################
|
|
## run initialize setup step for ZITADEL tests
|
|
#######################
|
|
FROM golang:${GO_VERSION}
|
|
WORKDIR /go/src/github.com/zitadel/zitadel
|
|
|
|
# copy setup
|
|
COPY . .
|
|
RUN e2e/e2e-setup-compose.sh
|