From 4625a610928f4f4b1ea49262c363376b1e574b6c Mon Sep 17 00:00:00 2001 From: Thomas Tendyck <51411342+thomasten@users.noreply.github.com> Date: Thu, 8 Dec 2022 14:38:11 +0100 Subject: [PATCH] Update Dockerfile.build --- dockerfiles/Dockerfile.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/Dockerfile.build b/dockerfiles/Dockerfile.build index b558389a..2e229e99 100644 --- a/dockerfiles/Dockerfile.build +++ b/dockerfiles/Dockerfile.build @@ -1,4 +1,4 @@ -FROM ghcr.io/edgelesssys/ego/build-base:v1.0.1 AS build +FROM ghcr.io/edgelesssys/ego/build-base:v1.1.0 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 \ @@ -11,8 +11,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ ninja-build \ wget -ARG erttag=v0.3.5 -ARG egotag=v1.0.1 +ARG erttag=v0.3.6 +ARG egotag=v1.1.0 RUN wget -qO- https://golang.org/dl/go1.18.1.linux-amd64.tar.gz | tar -C /usr/local -xz \ && git clone -b $erttag --depth=1 https://github.com/edgelesssys/edgelessrt \ && git clone -b $egotag --depth=1 https://github.com/edgelesssys/ego \