Skip to content

Commit 4270929

Browse files
committed
Update buildpacks to include jq.
1 parent 3695c94 commit 4270929

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

scripts/docker/buildpack-deps/Dockerfile.ubuntu1604.clang.ossfuzz

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# (c) 2016-2021 solidity contributors.
2323
#------------------------------------------------------------------------------
2424
FROM gcr.io/oss-fuzz-base/base-clang:latest as base
25-
LABEL version="15"
25+
LABEL version="16"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

@@ -32,7 +32,7 @@ RUN apt-get update; \
3232
software-properties-common \
3333
ninja-build git wget \
3434
libbz2-dev zlib1g-dev git curl uuid-dev \
35-
pkg-config openjdk-8-jdk liblzma-dev unzip mlton m4; \
35+
pkg-config openjdk-8-jdk liblzma-dev unzip mlton m4 jq; \
3636
apt-get install -qy python3-pip;
3737

3838
# Install cmake 3.21.2 (minimum requirement is cmake 3.10)

scripts/docker/buildpack-deps/Dockerfile.ubuntu2004

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# (c) 2016-2019 solidity contributors.
2323
#------------------------------------------------------------------------------
2424
FROM buildpack-deps:focal AS base
25-
LABEL version="10"
25+
LABEL version="11"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

@@ -37,7 +37,7 @@ RUN set -ex; \
3737
cmake ninja-build \
3838
libboost-filesystem-dev libboost-test-dev libboost-system-dev \
3939
libboost-program-options-dev \
40-
libcvc4-dev libz3-static-dev z3-static \
40+
libcvc4-dev libz3-static-dev z3-static jq \
4141
; \
4242
apt-get install -qy python3-pip python3-sphinx; \
4343
pip3 install codecov; \

scripts/docker/buildpack-deps/Dockerfile.ubuntu2004.clang

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# (c) 2016-2019 solidity contributors.
2323
#------------------------------------------------------------------------------
2424
FROM buildpack-deps:focal AS base
25-
LABEL version="10"
25+
LABEL version="11"
2626

2727
ARG DEBIAN_FRONTEND=noninteractive
2828

@@ -38,7 +38,7 @@ RUN set -ex; \
3838
libboost-filesystem-dev libboost-test-dev libboost-system-dev \
3939
libboost-program-options-dev \
4040
clang \
41-
libz3-static-dev \
41+
libz3-static-dev jq \
4242
; \
4343
rm -rf /var/lib/apt/lists/*
4444

0 commit comments

Comments
 (0)