diff --git a/build-images/Earthfile b/build-images/Earthfile index 3448d027525..08664afe3f0 100644 --- a/build-images/Earthfile +++ b/build-images/Earthfile @@ -141,6 +141,8 @@ build: # Python (clang bindings for wasm bindgen.) python3 \ python3-clang \ + # Unminimize ubuntu installation, recently removed from base images + unminimize \ && apt-get -y autoremove \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* @@ -321,12 +323,12 @@ devbox: CMD ["/bin/zsh"] ARG TARGETARCH - SAVE IMAGE --push aztecprotocol/devbox:1.0-$TARGETARCH + SAVE IMAGE --push aztecprotocol/devbox:1.1-$TARGETARCH # Save it without the arch tag as this is what's referenced in devcontainer.json - SAVE IMAGE aztecprotocol/devbox:1.0 + SAVE IMAGE aztecprotocol/devbox:1.1 devbox-manifest: - LET VERSION = 1.0 + LET VERSION = 1.1 ARG TARGETARCH WAIT BUILD +devbox @@ -426,5 +428,5 @@ sysbox: EXPOSE 22 ARG TARGETARCH - SAVE IMAGE aztecprotocol/sysbox:1.0-$TARGETARCH - SAVE IMAGE aztecprotocol/sysbox:1.0 + SAVE IMAGE aztecprotocol/sysbox:1.1-$TARGETARCH + SAVE IMAGE aztecprotocol/sysbox:1.1 diff --git a/build-images/run.sh b/build-images/run.sh index 2e54ba1ae90..3a9185795ae 100755 --- a/build-images/run.sh +++ b/build-images/run.sh @@ -41,5 +41,5 @@ else -vdevbox-var-lib-docker:/var/lib/docker \ -v$HOME/.ssh/id_rsa:/home/aztec-dev/.ssh/id_rsa:ro \ --privileged \ - aztecprotocol/devbox:1.0 + aztecprotocol/devbox:1.1 fi \ No newline at end of file