From 6ccf9f41b8ba8062516a0b3e4d199ffe2c6d9829 Mon Sep 17 00:00:00 2001 From: Evan Gray Date: Tue, 12 Mar 2024 16:48:32 -0400 Subject: [PATCH] ci: install vim to fix foundry (cache bust) --- ethereum/Dockerfile | 2 +- testing/Dockerfile.sdk.test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ethereum/Dockerfile b/ethereum/Dockerfile index 3e6379199..55b59884f 100644 --- a/ethereum/Dockerfile +++ b/ethereum/Dockerfile @@ -6,7 +6,7 @@ FROM node:19.6.1-slim@sha256:a1ba21bf0c92931d02a8416f0a54daad66cb36a85d2b73af9d7 # RUN apk add git python make build-base # RUN apk update && apk add bash RUN apt-get update && apt-get -y install \ - git python make curl netcat + git python make curl netcat vim RUN npm i typescript -g RUN curl -L https://foundry.paradigm.xyz | bash diff --git a/testing/Dockerfile.sdk.test b/testing/Dockerfile.sdk.test index 52e56cd02..0de71aa2e 100644 --- a/testing/Dockerfile.sdk.test +++ b/testing/Dockerfile.sdk.test @@ -1,7 +1,7 @@ FROM node:19.6.1-slim@sha256:a1ba21bf0c92931d02a8416f0a54daad66cb36a85d2b73af9d73b044f5f57cfc RUN apt-get update && apt-get -y install \ - git python3 make curl netcat + git python3 make curl netcat vim RUN npm i typescript -g RUN curl -L https://foundry.paradigm.xyz | bash