Skip to content

Commit

Permalink
Update Dockerfile.build
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasten authored Mar 12, 2023
1 parent f3508bd commit f272b3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dockerfiles/Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/edgelesssys/ego/build-base:v1.1.0 AS build
FROM ghcr.io/edgelesssys/ego/build-base:v1.2.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 \
Expand All @@ -11,9 +11,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ninja-build \
wget

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 \
ARG erttag=v0.3.7
ARG egotag=v1.2.0
RUN wget -qO- https://golang.org/dl/go1.20.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 \
&& mkdir ertbuild egobuild
Expand Down

0 comments on commit f272b3f

Please sign in to comment.