mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-22 05:37:57 +00:00
1bb2e96501
* evm template integrated * workflows modified per template * workflow fixes
12 lines
273 B
Docker
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"] |