From 7bb14079d29c3280424bcc34e92598370e20631a Mon Sep 17 00:00:00 2001 From: Flouse <1297478+Flouse@users.noreply.github.com> Date: Wed, 25 Oct 2023 09:36:24 +0000 Subject: [PATCH] chore: fix Dockerfile of godwoken-web3 --- web3/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3/Dockerfile b/web3/Dockerfile index deeb2f027..309015d6c 100644 --- a/web3/Dockerfile +++ b/web3/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update \ && apt-get dist-upgrade -y \ && apt-get install curl -y \ && apt-get install jq -y \ - && rm -rf /var/lib/apt/lists/* + && rm -rf /var/lib/apt/lists/* \ && echo "Finished installing dependencies" RUN cd /godwoken-web3 && yarn && yarn build