2023-02-24 17:46:17 +01:00
|
|
|
FROM fedora:37@sha256:a9fed38b343ea8a2722c78d5ad97d691421bf46f20f20076d34dd6948a2a792d as build
|
2022-03-22 16:03:15 +01:00
|
|
|
|
2022-04-29 15:55:56 +02:00
|
|
|
RUN dnf -y update && \
|
2022-05-23 10:35:14 +02:00
|
|
|
dnf -y install @development-tools pkg-config iproute iputils wget git jq openssl-devel cryptsetup-libs cryptsetup-devel && \
|
2022-04-29 15:55:56 +02:00
|
|
|
dnf clean all
|
2022-03-22 16:03:15 +01:00
|
|
|
|
|
|
|
# Install Go
|
2023-02-03 18:15:40 +01:00
|
|
|
ARG GO_VER=1.20.1
|
2022-09-02 12:45:56 +02:00
|
|
|
RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \
|
2022-04-29 15:55:56 +02:00
|
|
|
tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \
|
|
|
|
rm go${GO_VER}.linux-amd64.tar.gz
|
2022-03-22 16:03:15 +01:00
|
|
|
ENV PATH ${PATH}:/usr/local/go/bin
|
|
|
|
|
|
|
|
# Download go dependencies
|
|
|
|
WORKDIR /constellation/
|
2023-02-09 15:54:12 +01:00
|
|
|
# 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
|
2022-03-22 16:03:15 +01:00
|
|
|
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-03-22 16:03:15 +01:00
|
|
|
|
2022-06-29 15:26:29 +02:00
|
|
|
FROM build AS build-bootstrapper
|
|
|
|
WORKDIR /constellation/bootstrapper/
|
2022-03-22 16:03:15 +01:00
|
|
|
|
2022-05-23 10:35:14 +02:00
|
|
|
ARG PROJECT_VERSION
|
2022-11-07 15:28:56 +01:00
|
|
|
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/
|
2022-05-23 10:35:14 +02:00
|
|
|
|
|
|
|
FROM build AS build-disk-mapper
|
2022-09-08 14:45:27 +02:00
|
|
|
WORKDIR /constellation/disk-mapper/
|
2022-05-23 10:35:14 +02:00
|
|
|
|
2022-11-18 16:43:44 +01:00
|
|
|
ARG PROJECT_VERSION
|
2022-11-07 15:28:56 +01:00
|
|
|
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/
|
2022-05-23 10:35:14 +02:00
|
|
|
|
2022-12-25 18:49:45 +01:00
|
|
|
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/
|
|
|
|
|
2022-06-29 15:26:29 +02:00
|
|
|
FROM scratch AS bootstrapper
|
|
|
|
COPY --from=build-bootstrapper /constellation/bootstrapper/bootstrapper /
|
2022-05-23 10:35:14 +02:00
|
|
|
|
|
|
|
FROM scratch AS disk-mapper
|
2022-09-08 14:45:27 +02:00
|
|
|
COPY --from=build-disk-mapper /constellation/disk-mapper/disk-mapper /
|
2022-12-25 18:49:45 +01:00
|
|
|
|
|
|
|
FROM scratch AS upgrade-agent
|
|
|
|
COPY --from=build-upgrade-agent /constellation/upgrade-agent/upgrade-agent /
|