Files
stacks-puppet-node/Dockerfile.memtest

16 lines
211 B
Docker

FROM rust:latest
WORKDIR /src/blockstack-core
RUN apt-get update
RUN apt-get install valgrind heaptrack -y
RUN apt-get install less
RUN rustup install stable
COPY . .
RUN cargo test --no-run
CMD ["bash"]