File tree Expand file tree Collapse file tree 3 files changed +24
-24
lines changed
samples/application/ccapi Expand file tree Collapse file tree 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:
8080``` bash
8181wget -qO- https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | apt-key add
8282add-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
8787You 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 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
44ENV PATH="${PATH}:/usr/bin/"
55
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ ARG NANOPB_VERSION=0.4.7
2626ARG OPENSSL_VERSION=3.0.12
2727ARG SGXSSL_VERSION=3.0_Rev1
2828ARG 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 ..
3232ENV GO_VERSION=${GO_VERSION}
@@ -39,32 +39,32 @@ ENV DEBIAN_FRONTEND "noninteractive"
3939WORKDIR /tmp
4040
4141RUN 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")
6161RUN 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
7070ENV GOROOT=/usr/local/go
You can’t perform that action at this time.
0 commit comments