From 6cb8c2c350385ed96c0824869a885a7285735a91 Mon Sep 17 00:00:00 2001 From: AnastasiiaVashchuk <72273339+AnastasiiaVashchuk@users.noreply.github.com> Date: Tue, 17 Oct 2023 17:37:21 +0300 Subject: [PATCH] fix: do not install npm second time for local node image (#248) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # What ❔ ## Why ❔ ## Checklist - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `zk fmt` and `zk lint`. --- docker/local-node/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/local-node/Dockerfile b/docker/local-node/Dockerfile index 2826c4a14744..83aa90aeda70 100644 --- a/docker/local-node/Dockerfile +++ b/docker/local-node/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get install -y libpq5 ca-certificates postgresql-client && rm -rf /var/l # Install node and yarn RUN curl -sL https://deb.nodesource.com/setup_18.x | bash - -RUN apt-get install -y nodejs npm +RUN apt-get install -y nodejs RUN npm install -g yarn # Copy compiler (both solc and zksolc) binaries