Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade ego #2207

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading