From 58b425259733c739eb35248f78ca3b5dd1188109 Mon Sep 17 00:00:00 2001 From: Chris Hager Date: Wed, 9 Oct 2024 11:55:35 +0200 Subject: [PATCH] add empty measurements file to docker image --- proxy-server.dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy-server.dockerfile b/proxy-server.dockerfile index 86dd037..771a699 100644 --- a/proxy-server.dockerfile +++ b/proxy-server.dockerfile @@ -18,6 +18,7 @@ FROM alpine:latest WORKDIR /app COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ COPY --from=builder /build/proxy-server /app/proxy-server +RUN echo "{\"azure-tdx\": {}}" > /app/measurements-empty.json ENV LISTEN_ADDR=":8080" EXPOSE 8080 CMD ["/app/proxy-server"]