2022-09-09 15:00:36 +02:00
|
|
|
FROM fedora@sha256:486fd5578f93fbc57a519e34ad4b7cac927c3f8a95409baedf0c19e9f287c207 as build
|
2022-04-12 14:07:17 +00:00
|
|
|
|
2022-06-29 16:13:01 +02:00
|
|
|
RUN dnf -y update && \
|
|
|
|
dnf install -y wget git
|
2022-04-12 14:07:17 +00:00
|
|
|
|
|
|
|
# Install Go
|
2022-11-02 11:17:29 +01:00
|
|
|
ARG GO_VER=1.19.3
|
2022-09-02 12:45:56 +02:00
|
|
|
RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \
|
2022-06-29 16:13:01 +02:00
|
|
|
tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \
|
|
|
|
rm go${GO_VER}.linux-amd64.tar.gz
|
2022-04-12 14:07:17 +00:00
|
|
|
ENV PATH ${PATH}:/usr/local/go/bin
|
|
|
|
|
|
|
|
# Download go dependencies
|
|
|
|
WORKDIR /constellation/
|
|
|
|
COPY go.mod ./
|
|
|
|
COPY go.sum ./
|
|
|
|
RUN go mod download all
|
|
|
|
|
|
|
|
# Copy Repo
|
|
|
|
COPY . /constellation
|
2022-06-01 12:34:56 +02:00
|
|
|
RUN rm -rf ./hack/
|
2022-04-12 14:07:17 +00:00
|
|
|
|
|
|
|
# Build
|
|
|
|
RUN mkdir -p /constellation/build
|
2022-06-29 16:40:43 +02:00
|
|
|
WORKDIR /constellation/kms/cmd
|
2022-06-15 16:00:48 +02:00
|
|
|
ARG PROJECT_VERSION=0.0.0
|
2022-10-11 17:08:23 +02:00
|
|
|
RUN CGO_ENABLED=0 go build -o /constellation/build/kmsserver -trimpath -buildvcs=false -ldflags "-s -w -buildid='' -X github.com/edgelesssys/constellation/v2/internal/constants.VersionInfo=${PROJECT_VERSION}"
|
2022-04-12 14:07:17 +00:00
|
|
|
|
2022-10-17 15:00:29 +02:00
|
|
|
FROM gcr.io/distroless/static:nonroot@sha256:d8afc7d6973f357162e2283551cf3347b2bb847a03d24510ee837f289505f8e3 as release
|
2022-04-12 14:07:17 +00:00
|
|
|
COPY --from=build /constellation/build/kmsserver /kmsserver
|
|
|
|
ENTRYPOINT ["/kmsserver"]
|