Skip to content

Commit

Permalink
upgrade ego
Browse files Browse the repository at this point in the history
  • Loading branch information
tudor-malene committed Dec 16, 2024
1 parent d42b6f7 commit aab1320
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dockerfiles/enclave.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions tools/edbconnect/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions tools/walletextension/enclave.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit aab1320

Please sign in to comment.