mirror of
https://github.com/alexgo-io/stacks-subnets.git
synced 2026-01-12 16:53:24 +08:00
23 lines
441 B
Docker
23 lines
441 B
Docker
FROM rust:stretch as build
|
|
|
|
ARG SUBNET_NODE_VERSION="No Version Info"
|
|
ARG GIT_BRANCH='No Branch Info'
|
|
ARG GIT_COMMIT='No Commit Info'
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . .
|
|
|
|
RUN mkdir /out
|
|
|
|
RUN cd testnet/stacks-node && cargo build --features monitoring_prom,slog_json --release
|
|
|
|
RUN cp target/release/subnet-node /out
|
|
|
|
FROM debian:stretch-slim
|
|
|
|
RUN apt update && apt install -y netcat openssl
|
|
COPY --from=build /out/ /bin/
|
|
|
|
CMD ["subnet-node", "mainnet"]
|