Files
stacks-puppet-node/Dockerfile
2019-05-23 10:04:02 -05:00

11 lines
136 B
Docker

FROM rust:latest
WORKDIR /src/blockstack-core
COPY . .
RUN cargo build --release
RUN cargo install --path .
CMD ["blockstack-core"]