FROM rust:bullseye 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 /contracts RUN cd testnet/stacks-node && cargo build --features monitoring_prom,slog_json --release RUN cp target/release/subnet-node /out FROM debian:bullseye-backports COPY --from=build /out/ /bin/ CMD ["subnet-node", "start"]