From aab132022476598161fd0de5e12836692b767e8d Mon Sep 17 00:00:00 2001 From: Tudor Malene Date: Mon, 16 Dec 2024 17:42:10 +0200 Subject: [PATCH] upgrade ego --- dockerfiles/enclave.Dockerfile | 4 ++-- tools/edbconnect/Dockerfile | 4 ++-- tools/walletextension/enclave.Dockerfile | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/enclave.Dockerfile b/dockerfiles/enclave.Dockerfile index 2a92372244..2fab3c2305 100644 --- a/dockerfiles/enclave.Dockerfile +++ b/dockerfiles/enclave.Dockerfile @@ -9,7 +9,7 @@ # /home/obscuro/go-obscuro/go/enclave/main contains the executable for the enclave # -FROM ghcr.io/edgelesssys/ego-dev:v1.5.3 AS build-base +FROM ghcr.io/edgelesssys/ego-dev:v1.6.0 AS build-base # setup container data structure RUN mkdir -p /home/obscuro/go-obscuro @@ -36,7 +36,7 @@ FROM build-enclave as build-enclave RUN ego sign enclave.json # Trigger a new build stage and use the smaller ego version: -FROM ghcr.io/edgelesssys/ego-deploy:v1.5.3 +FROM ghcr.io/edgelesssys/ego-deploy:v1.6.0 # Copy just the binary for the enclave into this build stage COPY --from=build-enclave \ diff --git a/tools/edbconnect/Dockerfile b/tools/edbconnect/Dockerfile index b117a9154f..8eae91e84d 100644 --- a/tools/edbconnect/Dockerfile +++ b/tools/edbconnect/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:v1.5.3 AS build-base +FROM ghcr.io/edgelesssys/ego-dev:v1.6.0 AS build-base # setup container data structure RUN mkdir -p /home/ten/go-ten @@ -32,7 +32,7 @@ RUN ego sign edb-enclave.json # Trigger a new build stage and use the smaller ego version: -FROM ghcr.io/edgelesssys/ego-deploy:v1.5.3 +FROM ghcr.io/edgelesssys/ego-deploy:v1.6.0 # Copy the binary and the entrypoint script COPY --from=sign-built-enclave \ diff --git a/tools/walletextension/enclave.Dockerfile b/tools/walletextension/enclave.Dockerfile index dd2893ed0c..5f4285d29c 100644 --- a/tools/walletextension/enclave.Dockerfile +++ b/tools/walletextension/enclave.Dockerfile @@ -9,7 +9,7 @@ # /data persistent volume mount point # Trigger new build stage for compiling the enclave -FROM ghcr.io/edgelesssys/ego-dev:v1.5.3 AS build-base +FROM ghcr.io/edgelesssys/ego-dev:v1.6.0 AS build-base # Install ca-certificates package and update it RUN apt-get update && apt-get install -y \ @@ -39,7 +39,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \ # Sign the enclave executable RUN ego sign enclave.json -FROM ghcr.io/edgelesssys/ego-deploy:v1.5.3 +FROM ghcr.io/edgelesssys/ego-deploy:v1.6.0 # Create data directory that will be used for persistence RUN mkdir -p /data && chmod 777 /data