From 6a366e864b4dc2952524b16fa60e1f3f75c803c2 Mon Sep 17 00:00:00 2001 From: Moray Grieve Date: Wed, 2 Aug 2023 10:09:52 +0100 Subject: [PATCH] Lock ego container image --- dockerfiles/enclave.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/enclave.Dockerfile b/dockerfiles/enclave.Dockerfile index 4ab80a116c..0dbbf2c675 100644 --- a/dockerfiles/enclave.Dockerfile +++ b/dockerfiles/enclave.Dockerfile @@ -4,7 +4,7 @@ # deploy = copies over only the enclave executable without the source # in a lightweight base image specialized for deployment and prepares the /data/ folder. -FROM ghcr.io/edgelesssys/ego-dev:latest AS build-base +FROM ghcr.io/edgelesssys/ego-dev:v1.3.0 AS build-base # setup container data structure RUN mkdir -p /home/obscuro/go-obscuro @@ -34,7 +34,7 @@ RUN ego sign main # /home/obscuro/go-obscuro/go/enclave/main contains the executable for the enclave # # Trigger a new build stage and use the smaller ego version: -FROM ghcr.io/edgelesssys/ego-deploy:latest +FROM ghcr.io/edgelesssys/ego-deploy:v1.3.0 # Copy just the binary for the enclave into this build stage COPY --from=build-enclave \