mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
fc33a74c78
The variable VersionInfo is supposed to be set by `go build -X ...` during link time but should not be modified at runtime. This change ensures the underlying var is private and can only be accessed by a public getter.
53 lines
2.2 KiB
Docker
53 lines
2.2 KiB
Docker
FROM fedora:37@sha256:a9fed38b343ea8a2722c78d5ad97d691421bf46f20f20076d34dd6948a2a792d as build
|
|
|
|
RUN dnf -y update && \
|
|
dnf -y install @development-tools pkg-config iproute iputils wget git jq openssl-devel cryptsetup-libs cryptsetup-devel && \
|
|
dnf clean all
|
|
|
|
# Install Go
|
|
ARG GO_VER=1.20.1
|
|
RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \
|
|
tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \
|
|
rm go${GO_VER}.linux-amd64.tar.gz
|
|
ENV PATH ${PATH}:/usr/local/go/bin
|
|
|
|
# Download go dependencies
|
|
WORKDIR /constellation/
|
|
# Necessary to make `go mod download all` work while having a local replace rule in the root-go.mod.
|
|
COPY operators/constellation-node-operator/api/go.mod ./operators/constellation-node-operator/api/go.mod
|
|
COPY operators/constellation-node-operator/api/go.sum ./operators/constellation-node-operator/api/go.sum
|
|
COPY go.mod ./
|
|
COPY go.sum ./
|
|
RUN go mod download all
|
|
|
|
# Copy Repo
|
|
COPY . /constellation
|
|
RUN rm -rf ./hack/
|
|
|
|
FROM build AS build-bootstrapper
|
|
WORKDIR /constellation/bootstrapper/
|
|
|
|
ARG PROJECT_VERSION
|
|
RUN --mount=type=cache,target=/root/.cache/go-build go build -o bootstrapper -tags=disable_tpm_simulator -buildvcs=false -ldflags "-s -w -buildid='' -X github.com/edgelesssys/constellation/v2/internal/constants.versionInfo=${PROJECT_VERSION}" ./cmd/bootstrapper/
|
|
|
|
FROM build AS build-disk-mapper
|
|
WORKDIR /constellation/disk-mapper/
|
|
|
|
ARG PROJECT_VERSION
|
|
RUN --mount=type=cache,target=/root/.cache/go-build go build -o disk-mapper -ldflags "-s -w -buildid='' -X github.com/edgelesssys/constellation/v2/internal/constants.versionInfo=${PROJECT_VERSION}" ./cmd/
|
|
|
|
FROM build AS build-upgrade-agent
|
|
WORKDIR /constellation/upgrade-agent/
|
|
|
|
ARG PROJECT_VERSION
|
|
RUN --mount=type=cache,target=/root/.cache/go-build go build -o upgrade-agent -ldflags "-s -w -buildid='' -X github.com/edgelesssys/constellation/v2/internal/constants.versionInfo=${PROJECT_VERSION}" ./cmd/
|
|
|
|
FROM scratch AS bootstrapper
|
|
COPY --from=build-bootstrapper /constellation/bootstrapper/bootstrapper /
|
|
|
|
FROM scratch AS disk-mapper
|
|
COPY --from=build-disk-mapper /constellation/disk-mapper/disk-mapper /
|
|
|
|
FROM scratch AS upgrade-agent
|
|
COPY --from=build-upgrade-agent /constellation/upgrade-agent/upgrade-agent /
|