File tree 3 files changed +24
-24
lines changed
samples/application/ccapi
3 files changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ Install ego by running the following:
80
80
``` bash
81
81
wget -qO- https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | apt-key add
82
82
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
85
85
```
86
86
87
87
You can find more information about ego installation on the official [ documentation] ( https://docs.edgeless.systems/ego/#/getting-started/install ) .
Original file line number Diff line number Diff line change 1
1
# 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
3
3
4
4
ENV PATH="${PATH}:/usr/bin/"
5
5
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ ARG NANOPB_VERSION=0.4.7
26
26
ARG OPENSSL_VERSION=3.0.12
27
27
ARG SGXSSL_VERSION=3.0_Rev1
28
28
ARG APT_ADD_PKGS=
29
- ARG EGO_VERSION=1.5.3
29
+ ARG EGO_VERSION=1.7.0
30
30
31
31
# for convenience remember all versions as env variables ..
32
32
ENV GO_VERSION=${GO_VERSION}
@@ -39,32 +39,32 @@ ENV DEBIAN_FRONTEND "noninteractive"
39
39
WORKDIR /tmp
40
40
41
41
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}
59
59
60
60
# docker commands (need as we use docker daemon from "outside")
61
61
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
62
62
&& add-apt-repository "deb [arch=" $(dpkg --print-architecture)"] https://download.docker.com/linux/ubuntu " $(. /etc/os-release && echo "$VERSION_CODENAME" )" stable" \
63
63
&& apt-get update -q \
64
64
&& 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
68
68
69
69
# Install go
70
70
ENV GOROOT=/usr/local/go
You can’t perform that action at this time.
0 commit comments