mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-04 02:35:13 +00:00

* feat: comprehensive sentry instrumentation * test: pass * fix: only fetch zitadel dsn in zitadel-operator * chore: use dns for sentry environment as soon as parsed * fix: trust ca certs * ci: update orbos * docs: add usage data explanation * fix: dont send validation errors * docs: improve ingestion data explanation * style: rename flag --disable-ingestion to --disable-analytics * fix: pass --disable-analytics flag to self deployments * fix: destroy command for sentry * fix: update orbos * fix: only switch environment if analytics is enabled * fix: ensure SENTRY_DSN is always set * test: test empty sentry dsn * ci: invalidate build caches * chore: use zitadel-dev if no version is passed * chore: combine dev releases in sentry * refactor: only check for semrel if sentry is enabled
66 lines
1.5 KiB
Docker
66 lines
1.5 KiB
Docker
#######################
|
|
## By default we build the prod enviroment
|
|
ARG ENV=prod
|
|
|
|
#######################
|
|
## Go base build
|
|
## Speed up this step by mounting your local go mod pkg directory
|
|
#######################
|
|
FROM golang:1.15 as go-base
|
|
|
|
WORKDIR src/github.com/caos/zitadel/
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
|
|
## Go test
|
|
FROM go-base as go-test
|
|
COPY . .
|
|
#Migrations for cockroach-secure
|
|
RUN go install github.com/rakyll/statik
|
|
RUN ./build/operator/prebuild.sh ./migrations
|
|
|
|
RUN go test -race -v -coverprofile=profile.cov ./operator/...
|
|
|
|
## Go test
|
|
FROM scratch as go-codecov
|
|
COPY --from=go-test /go/src/github.com/caos/zitadel/profile.cov profile.cov
|
|
|
|
## Go prod build
|
|
FROM go-test as prod-go-build
|
|
|
|
|
|
ARG ARCH=amd64
|
|
ARG OS=linux
|
|
ARG VERSION=none
|
|
ARG GITHUBOAUTHCLIENTID=none
|
|
ARG GITHUBOAUTHCLIENTSECRET=none
|
|
RUN GOOS=${OS} GOARCH=${ARCH} ./build/operator/build.sh ${VERSION}
|
|
|
|
## Go dev build
|
|
FROM go-base as dev-go-build
|
|
RUN go get github.com/go-delve/delve/cmd/dlv
|
|
|
|
#######################
|
|
## Final Production Image
|
|
#######################
|
|
FROM alpine:latest as artifact
|
|
RUN adduser -D zitadel
|
|
|
|
ARG ARCH=amd64
|
|
ARG OS=linux
|
|
|
|
RUN apk add -U --no-cache ca-certificates
|
|
|
|
COPY --from=prod-go-build /go/src/github.com/caos/zitadel/zitadelctl /app/zitadelctl
|
|
RUN chmod a+x /app/zitadelctl
|
|
|
|
## Scratch Image
|
|
FROM scratch as final
|
|
COPY --from=artifact /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
COPY --from=artifact /etc/passwd /etc/passwd
|
|
COPY --from=artifact /app /
|
|
USER zitadel
|
|
HEALTHCHECK NONE
|
|
ENTRYPOINT ["/zitadelctl"]
|