mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-10 19:53:41 +00:00
13 lines
233 B
Docker
13 lines
233 B
Docker
ARG GO_VERSION=1.17
|
|
|
|
#######################
|
|
## run initialize setup step for ZITADEL tests
|
|
#######################
|
|
FROM golang:${GO_VERSION}
|
|
RUN mkdir -p /cmd/e2e-setup
|
|
WORKDIR /
|
|
|
|
# copy setup
|
|
COPY . .
|
|
RUN e2e/e2e-setup-compose.sh
|