Files
pezkuwi-runtime-templates/generic-template/template-fuzzer/Dockerfile
T
Özgün Özerk 1bb2e96501 Transition into monorepo (#180)
* evm template integrated

* workflows modified per template

* workflow fixes
2024-05-17 12:00:25 +03:00

12 lines
273 B
Docker

FROM rust:1-buster
USER root
RUN apt-get update && apt-get -y install protobuf-compiler libclang-dev clang binutils-dev libunwind-dev
RUN mkdir -p /fuzztest
ADD . /fuzztest/
WORKDIR /fuzztest/template-fuzzer
CMD ["/bin/bash", "/fuzztest/template-fuzzer/run-fuzzer.sh"]