Skip to content
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.4.11
v0.4.13
6 changes: 3 additions & 3 deletions dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/edgelesssys/edgelessrt/build-base:v0.4.10 AS build
FROM ghcr.io/edgelesssys/edgelessrt/build-base:v0.4.13 AS build

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

ARG erttag=v0.4.11
ARG erttag=v0.4.13
RUN git clone -b $erttag --depth=1 https://github.com/edgelesssys/edgelessrt \
&& mkdir build

Expand All @@ -26,7 +26,7 @@ FROM scratch AS export
COPY --from=build /build/edgelessrt_*_amd64_ubuntu-22.04.deb /


FROM ubuntu:jammy-20250619 AS release_deploy
FROM ubuntu:jammy-20250819 AS release_deploy
LABEL description="Containerized SGX for release"

ARG PSW_VERSION=2.26.100.0-jammy1
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.build-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:jammy-20250619
FROM ubuntu:jammy-20250819
RUN apt-get update && apt-get install -dy --no-install-recommends \
build-essential \
ca-certificates \
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile.focal
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/edgelesssys/edgelessrt/build-base-focal:v0.4.10 AS build
FROM ghcr.io/edgelesssys/edgelessrt/build-base-focal:v0.4.13 AS build

# don't run `apt-get update` because required packages are cached in build-base for reproducibility
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Expand All @@ -11,7 +11,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ninja-build \
wget

ARG erttag=v0.4.11
ARG erttag=v0.4.13
RUN git clone -b $erttag --depth=1 https://github.com/edgelesssys/edgelessrt \
&& mkdir build

Expand Down