Skip to content

Commit 6be9d97

Browse files
committed
update versions
Signed-off-by: Thomas Tendyck <tt@edgeless.systems>
1 parent 53d0654 commit 6be9d97

7 files changed

Lines changed: 15 additions & 14 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ Key features of Edgeless RT are:
2727
If you're on Ubuntu 20.04, 22.04, or 24.04 (experimental) and don't want to build the SDK yourself, you can install the binary release:
2828

2929
```bash
30+
ERT_VER=0.x.x # replace with latest version
3031
sudo mkdir -p /etc/apt/keyrings
3132
wget -qO- https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | sudo tee /etc/apt/keyrings/intel-sgx-keyring.asc > /dev/null
3233
echo "deb [signed-by=/etc/apt/keyrings/intel-sgx-keyring.asc arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/intel-sgx.list
3334
sudo apt update
34-
ERT_DEB=edgelessrt_0.4.13_amd64_ubuntu-$(lsb_release -rs).deb
35-
wget https://github.com/edgelesssys/edgelessrt/releases/download/v0.4.13/$ERT_DEB
35+
ERT_DEB=edgelessrt_$ERT_VER_amd64_ubuntu-$(lsb_release -rs).deb
36+
wget https://github.com/edgelesssys/edgelessrt/releases/download/v$ERT_VER/$ERT_DEB
3637
sudo apt install ./$ERT_DEB build-essential cmake libssl-dev
3738
```
3839

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.5.0
1+
v0.5.1

dockerfiles/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/edgelesssys/edgelessrt/build-base:v0.5.0 AS build
1+
FROM ghcr.io/edgelesssys/edgelessrt/build-base:v0.5.1 AS build
22

33
# don't run `apt-get update` because required packages are cached in build-base for reproducibility
44
RUN apt-get install -y --no-install-recommends \
@@ -11,7 +11,7 @@ RUN apt-get install -y --no-install-recommends \
1111
ninja-build \
1212
wget
1313

14-
ARG erttag=v0.5.0
14+
ARG erttag=v0.5.1
1515
RUN git clone -b $erttag --depth=1 https://github.com/edgelesssys/edgelessrt \
1616
&& mkdir build
1717

@@ -26,13 +26,13 @@ FROM scratch AS export
2626
COPY --from=build /build/edgelessrt_*_amd64_ubuntu-22.04.deb /
2727

2828

29-
FROM ubuntu:jammy-20251013 AS release_deploy
29+
FROM ubuntu:jammy-20260109 AS release_deploy
3030
LABEL description="Containerized SGX for release"
3131

32-
ARG PSW_VERSION=2.26.100.0-jammy1
33-
ARG DCAP_VERSION=1.23.100.0-jammy1
32+
ARG PSW_VERSION=2.27.100.1-jammy1
33+
ARG DCAP_VERSION=1.24.100.2-jammy1
3434
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates libcurl4 wget \
35-
&& wget -Petc https://github.com/intel/confidential-computing.tee.dcap/raw/DCAP_1.23/QuoteGeneration/qcnl/linux/sgx_default_qcnl_azure.conf \
35+
&& wget -Petc https://github.com/intel/confidential-computing.tee.dcap/raw/DCAP_1.24/QuoteGeneration/qcnl/linux/sgx_default_qcnl_azure.conf \
3636
&& wget -qO /etc/apt/keyrings/intel-sgx-keyring.asc https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key \
3737
&& echo 'deb [signed-by=/etc/apt/keyrings/intel-sgx-keyring.asc arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu jammy main' > /etc/apt/sources.list.d/intel-sgx.list \
3838
&& apt-get update && apt-get install -y --no-install-recommends \

dockerfiles/Dockerfile.build-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:jammy-20251013
1+
FROM ubuntu:jammy-20260109
22
RUN apt-get update && apt-get install -dy --no-install-recommends \
33
build-essential \
44
ca-certificates \

dockerfiles/Dockerfile.focal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
1111
ninja-build \
1212
wget
1313

14-
ARG erttag=v0.5.0
14+
ARG erttag=v0.5.1
1515
RUN git clone -b $erttag --depth=1 https://github.com/edgelesssys/edgelessrt \
1616
&& mkdir build
1717

src/meshpremain/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/google/uuid v1.6.0 // indirect
1212
github.com/spf13/afero v1.11.0 // indirect
1313
go.uber.org/multierr v1.11.0 // indirect
14-
go.uber.org/zap v1.27.0 // indirect
14+
go.uber.org/zap v1.27.1 // indirect
1515
golang.org/x/crypto v0.33.0 // indirect
1616
golang.org/x/net v0.35.0 // indirect
1717
golang.org/x/sys v0.30.0 // indirect

src/meshpremain/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT
1616
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
1717
go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
1818
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
19-
go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=
20-
go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
19+
go.uber.org/zap v1.27.1 h1:08RqriUEv8+ArZRYSTXy1LeBScaMpVSTBhCeaZYfMYc=
20+
go.uber.org/zap v1.27.1/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
2121
golang.org/x/crypto v0.33.0 h1:IOBPskki6Lysi0lo9qQvbxiQ+FvsCC/YWOecCHAixus=
2222
golang.org/x/crypto v0.33.0/go.mod h1:bVdXmD7IV/4GdElGPozy6U7lWdRXA4qyRVGJV57uQ5M=
2323
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=

0 commit comments

Comments
 (0)