mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-11 00:44:20 -05:00
82cd6bb692
Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
17 lines
990 B
Docker
17 lines
990 B
Docker
FROM ubuntu:20.04@sha256:24a0df437301598d1a4b62ddf59fa0ed2969150d70d748c84225e6501e9c36b9 AS build
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
libcurl4-openssl-dev \
|
|
wget
|
|
RUN wget -q https://packages.microsoft.com/repos/azurecore/pool/main/a/azguestattestation1/azguestattestation1_1.0.2_amd64.deb \
|
|
&& apt-get install /azguestattestation1_1.0.2_amd64.deb
|
|
RUN wget -q https://github.com/Azure/confidential-computing-cvm-guest-attestation/raw/4bd89d2808912fbaa319e8853e6f5e1e245d45ca/cvm-guest-attestation-linux-app/main.cpp \
|
|
&& sed -i s/test.attest.azure.net/attest.azure.net/ main.cpp \
|
|
&& touch Utils.h \
|
|
&& g++ -Os -I/usr/include/azguestattestation1 -oclient main.cpp -lazguestattestation
|
|
|
|
FROM ubuntu:20.04@sha256:24a0df437301598d1a4b62ddf59fa0ed2969150d70d748c84225e6501e9c36b9 AS release
|
|
COPY --from=build client azguestattestation1_1.0.2_amd64.deb /
|
|
RUN apt-get update && apt-get install -y /azguestattestation1_1.0.2_amd64.deb
|
|
ENTRYPOINT ["/client"]
|