mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-05-13 17:11:47 +08:00
11 lines
136 B
Docker
11 lines
136 B
Docker
FROM rust:latest
|
|
|
|
WORKDIR /src/blockstack-core
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build --release
|
|
RUN cargo install --path .
|
|
|
|
CMD ["blockstack-core"]
|