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