mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
38 lines
1.1 KiB
Docker
38 lines
1.1 KiB
Docker
|
FROM ubuntu@sha256:7cc0576c7c0ec2384de5cbf245f41567e922aab1b075f3e8ad565f508032df17 as build
|
||
|
|
||
|
ENV DEBIAN_FRONTEND="noninteractive"
|
||
|
RUN apt-get update && apt-get install cmake iproute2 iputils-ping wget curl git jq libssl-dev musl-tools=1.1.24-1 -y
|
||
|
|
||
|
# Install Go
|
||
|
ARG GO_VER=1.18
|
||
|
RUN wget https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz
|
||
|
RUN 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
|
||
|
|
||
|
# Install Rust
|
||
|
ARG RUST_VER=1.58.0
|
||
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||
|
ENV PATH /root/.cargo/bin:${PATH}
|
||
|
RUN rustup install ${RUST_VER}
|
||
|
RUN rustup override set ${RUST_VER}
|
||
|
RUN rustup target add x86_64-unknown-linux-musl
|
||
|
|
||
|
# Download go dependencies
|
||
|
WORKDIR /constellation/
|
||
|
COPY go.mod ./
|
||
|
COPY go.sum ./
|
||
|
RUN go mod download all
|
||
|
|
||
|
# Copy Repo
|
||
|
COPY . /constellation
|
||
|
|
||
|
# Build
|
||
|
RUN mkdir -p /constellation/build
|
||
|
WORKDIR /constellation/build
|
||
|
RUN cmake -DCMAKE_BUILD_TYPE=Release -DCOORDINATOR_STATIC_MUSL=ON .. && make coordinator
|
||
|
|
||
|
RUN mv coordinator coordinator-$(sha512sum coordinator | cut -d " " -f 1)
|
||
|
|
||
|
FROM scratch AS export
|
||
|
COPY --from=build /constellation/build/coordinator-* /
|