From 7411e6dcc0ba1b530bae0dda6506700d12cc4149 Mon Sep 17 00:00:00 2001 From: IlyasRidhuan Date: Thu, 7 Mar 2024 15:27:12 +0000 Subject: [PATCH] fix: python pip ubuntu --- l1-contracts/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l1-contracts/Dockerfile b/l1-contracts/Dockerfile index 44ef16c676e8..0d0baf7e8e6b 100644 --- a/l1-contracts/Dockerfile +++ b/l1-contracts/Dockerfile @@ -1,7 +1,7 @@ # Building requires foundry. # FROM ghcr.io/foundry-rs/foundry:nightly-4a643801d0b3855934cdec778e33e79c79971783 FROM ubuntu:lunar -RUN apt update && apt install git jq bash nodejs npm yarn python3 py3-pip -y && pip3 install slither-analyzer==0.10.0 slitherin==0.5.0 +RUN apt update && apt install git jq bash nodejs npm yarn python3 python3-pip -y && pip3 install slither-analyzer==0.10.0 slitherin==0.5.0 RUN curl -L https://foundry.paradigm.xyz | bash RUN source ~/.bashrc