mirror of
https://github.com/rafagafe/tiny-json.git
synced 2026-03-08 21:18:10 -04:00
9 lines
314 B
Docker
9 lines
314 B
Docker
FROM gcr.io/oss-fuzz-base/base-builder
|
|
RUN apt-get update && apt-get install -y make autoconf automake libtool cmake \
|
|
pkg-config curl check
|
|
COPY . $SRC/tiny-json
|
|
COPY .clusterfuzzlite/build.sh $SRC/build.sh
|
|
COPY .clusterfuzzlite/*.cpp $SRC/
|
|
COPY .clusterfuzzlite/*.c $SRC/
|
|
WORKDIR tiny-json
|