mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
8609ced24b
* chore(deps): bump k8s.io/apiextensions-apiserver from 0.19.2 to 0.21.3 Bumps [k8s.io/apiextensions-apiserver](https://github.com/kubernetes/apiextensions-apiserver) from 0.19.2 to 0.21.3. - [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases) - [Commits](https://github.com/kubernetes/apiextensions-apiserver/compare/v0.19.2...v0.21.3) --- updated-dependencies: - dependency-name: k8s.io/apiextensions-apiserver dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore(deps): bump google.golang.org/api from 0.34.0 to 0.52.0 Bumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.34.0 to 0.52.0. - [Release notes](https://github.com/googleapis/google-api-go-client/releases) - [Changelog](https://github.com/googleapis/google-api-go-client/blob/master/CHANGES.md) - [Commits](https://github.com/googleapis/google-api-go-client/compare/v0.34.0...v0.52.0) --- updated-dependencies: - dependency-name: google.golang.org/api dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * start update dependencies * update mods and otlp * fix(build): update to go 1.16 * old version for k8s mods * update k8s versions * update orbos * with batcher * add batch span processor * try with older otel version 0.20 * remove syncer * otel rc2 * fix config Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Stefan Benz <stefan@caos.ch>
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.16 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"]
|