mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-01-12 22:43:42 +08:00
16 lines
211 B
Docker
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"]
|