mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-15 00:49:53 +08:00
* feat: beta release with subnets support * chore(release): 7.1.0-beta.1 [skip ci] ## [7.1.0-beta.1](https://github.com/hirosystems/stacks-blockchain-api/compare/v7.0.0...v7.1.0-beta.1) (2023-02-14) ### Features * beta release with subnets support ([06164eb](06164eb1dd)) * support for subnets ([#1549](https://github.com/hirosystems/stacks-blockchain-api/issues/1549)) ([5d7056c](5d7056c1ba)) ### Bug Fixes * fixed the order of microblocks_streamed returned in reverse order in block endpoint ([#1528](https://github.com/hirosystems/stacks-blockchain-api/issues/1528)) ([764f64a](764f64a538)) * Merge master into beta * chore: update l1 and l2 subnet contracts * chore: update subnets docker compose to latest 2.1 image * chore: enable subnet STX transfer tests * chore: progress on fixing test for subnet to L1 FT withdrawal * feat: support register asset event synthetic tx parsing (#1583) * feat: support register asset event synthetic tx parsing * test: integration tests for register-new-ft-contract and register-new-nft-contract synthetic txs * feat: update 'register-asset-contract' event parsing * chore: bump to latest subnet docker image (also include subnets.Dockerfile for local dev) * chore(release): 7.1.0-beta.2 [skip ci] ## [7.1.0-beta.2](https://github.com/hirosystems/stacks-blockchain-api/compare/v7.1.0-beta.1...v7.1.0-beta.2) (2023-03-16) ### Features * support register asset event synthetic tx parsing ([#1583](https://github.com/hirosystems/stacks-blockchain-api/issues/1583)) ([57d58f2](57d58f2f8d)) --------- Co-authored-by: semantic-release-bot <semantic-release-bot@martynus.net>
26 lines
786 B
Docker
26 lines
786 B
Docker
FROM rust:bullseye as build
|
|
|
|
ARG STACKS_NODE_VERSION="No Version Info"
|
|
ARG GIT_BRANCH='No Branch Info'
|
|
ARG GIT_COMMIT='No Commit Info'
|
|
|
|
WORKDIR /src
|
|
|
|
RUN git clone https://github.com/hirosystems/stacks-subnets.git .
|
|
RUN git checkout 77c6625947cdf66ab02acc5c03c08e5142911494
|
|
|
|
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/
|
|
# Add the core contracts to the image, so that clarinet can retrieve them.
|
|
COPY --from=build /src/core-contracts/contracts/subnet.clar /contracts/subnet.clar
|
|
COPY --from=build /src/core-contracts/contracts/helper/subnet-traits.clar /contracts/subnet-traits.clar
|
|
|
|
CMD ["subnet-node", "start"]
|