From 315c13035d0717950feb811d67d9f92188fd2201 Mon Sep 17 00:00:00 2001 From: Tomasz Michalak Date: Tue, 15 Oct 2024 09:10:15 +0200 Subject: [PATCH] Dockerfile: Add cpanminus --- .github/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/Dockerfile b/.github/Dockerfile index 4ba12598881..8861f12f1f1 100644 --- a/.github/Dockerfile +++ b/.github/Dockerfile @@ -28,7 +28,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ bison \ build-essential \ ccache \ - curl \ + cnurl \ + cpanminus \ device-tree-compiler \ flex \ gawk \ @@ -56,6 +57,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ zlib1g \ zlib1g-dev +RUN cpanm Bit::Vector + # Clone and build Verilator RUN git clone https://github.com/verilator/verilator verilator && \ cd verilator && \