Skip to content

Commit d8e108e

Browse files
Bump ego version
Signed-off-by: Marcus Brandenburger <[email protected]>
1 parent 91577cc commit d8e108e

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

Diff for: ecc_go/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ Install ego by running the following:
8080
```bash
8181
wget -qO- https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | apt-key add
8282
add-apt-repository "deb [arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu `lsb_release -cs` main"
83-
wget https://github.com/edgelesssys/ego/releases/download/v1.5.3/ego_1.5.3_amd64_ubuntu-22.04.deb
84-
apt install ./ego_1.5.3_amd64_ubuntu-22.04.deb build-essential libssl-dev
83+
wget https://github.com/edgelesssys/ego/releases/download/v1.7.0/ego_1.7.0_amd64_ubuntu-22.04.deb
84+
apt install ./ego_1.7.0_amd64_ubuntu-22.04.deb build-essential libssl-dev
8585
```
8686

8787
You can find more information about ego installation on the official [documentation](https://docs.edgeless.systems/ego/#/getting-started/install).

Diff for: samples/application/ccapi/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use an official Golang runtime as a parent image
2-
FROM golang:1.21-alpine AS build
2+
FROM golang:1.23-alpine AS build
33

44
ENV PATH="${PATH}:/usr/bin/"
55

Diff for: utils/docker/base-dev/Dockerfile

+21-21
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ARG NANOPB_VERSION=0.4.7
2626
ARG OPENSSL_VERSION=3.0.12
2727
ARG SGXSSL_VERSION=3.0_Rev1
2828
ARG APT_ADD_PKGS=
29-
ARG EGO_VERSION=1.5.3
29+
ARG EGO_VERSION=1.7.0
3030

3131
# for convenience remember all versions as env variables ..
3232
ENV GO_VERSION=${GO_VERSION}
@@ -39,32 +39,32 @@ ENV DEBIAN_FRONTEND "noninteractive"
3939
WORKDIR /tmp
4040

4141
RUN apt-get update -q \
42-
&& apt-get install -y -q \
43-
build-essential \
44-
clang-format \
45-
cmake \
46-
git \
47-
libcurl4-openssl-dev \
48-
libprotobuf-dev \
49-
libssl-dev \
50-
libtool \
51-
pkg-config \
52-
python-is-python3 \
53-
protobuf-compiler \
54-
python3-protobuf \
55-
psmisc \
56-
bc \
57-
software-properties-common \
58-
${APT_ADD_PKGS}
42+
&& apt-get install -y -q \
43+
build-essential \
44+
clang-format \
45+
cmake \
46+
git \
47+
libcurl4-openssl-dev \
48+
libprotobuf-dev \
49+
libssl-dev \
50+
libtool \
51+
pkg-config \
52+
python-is-python3 \
53+
protobuf-compiler \
54+
python3-protobuf \
55+
psmisc \
56+
bc \
57+
software-properties-common \
58+
${APT_ADD_PKGS}
5959

6060
# docker commands (need as we use docker daemon from "outside")
6161
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
6262
&& add-apt-repository "deb [arch="$(dpkg --print-architecture)"] https://download.docker.com/linux/ubuntu "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" \
6363
&& apt-get update -q \
6464
&& apt-get install -y -q \
65-
docker-ce-cli \
66-
docker-buildx-plugin \
67-
docker-compose-plugin
65+
docker-ce-cli \
66+
docker-buildx-plugin \
67+
docker-compose-plugin
6868

6969
# Install go
7070
ENV GOROOT=/usr/local/go

0 commit comments

Comments
 (0)