feat: initial testnet support + dockerfile updates

This commit is contained in:
Aaron Blankstein
2022-04-28 15:03:58 -05:00
parent 0a60fa0ff0
commit 333f2e033f
13 changed files with 356 additions and 99 deletions

View File

@@ -13,13 +13,11 @@ RUN apk add --no-cache musl-dev
RUN mkdir /out
RUN cd testnet/stacks-node && cargo build --features monitoring_prom,slog_json --release
RUN cd testnet/puppet-chain && cargo build --release
RUN cp target/release/stacks-node /out
RUN cp target/release/puppet-chain /out
RUN cp target/release/hyperchain-node /out
FROM alpine:latest
COPY --from=build /out/ /bin/
CMD ["stacks-node", "mainnet"]
CMD ["hyperchain-node", "start"]