mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-25 04:17:25 +08:00
* roll up v2.0.1-b2 to develop * b2-fixed * adjust return data of fast sync so it doesn't return the earliest frame * -b3 * fix: announce peer based on leading frame, not initial frame; fix: looping bug * fix: last batch fails due to underflow; qol: make logging chattier * -b4 * resolve frame cache issue * fix: mint loop + re-migrate * fix: register execution panic * fix: mint loop, other side * fix: handle unexpected return of nil status * final -b4 * handle subtle change to migration * qol: add heuristic to handle corruption scenario * bump genesis * qol: use separate channel for worker * final parameterization, parallelize streams * Add direct peers to blossomsub (#309) Co-authored-by: Tyler Sturos <tyler.john@qcommander.sh> * chore(docker): add ca-certificates to fix x509 error. (#307) * Update qcommander.sh bootrap (#304) * chore(docker): add ca-certificates to fix x509 error. --------- Co-authored-by: Tyler Sturos <55340199+tjsturos@users.noreply.github.com> * deprecate signers 10, 11, 14, 17 * adjust signatory check size to match rotated out signers * qol: sync by rebroadcast * upgrade version * more small adjustments * wait a little longer * fix: don't use iterator for frame directly until iterator is fixed * change iterator, genesis for testnet * adjust to previous sync handling * adjust: don't grab the very latest while it's already being broadcasted * ok, ready for testnet * handle rebroadcast quirks * more adjustments from testing * faster * temporarily bulk process on frame candidates * resolve separate frames * don't loop * make worker reset resume to check where it should continue * move window * reduce signature count now that supermajority signed last * resolve bottlenecks * remove GOMAXPROCS limit for now * revisions for v2.0.2.1 * bump version * bulk import * reintroduce sync * small adustments to make life better * check bitmask for peers and keep alive * adjust reconnect * ensure peer doesn't fall off address list * adjust blossomsub to background discovery * bump version * remove dev check * remove debug log line * further adjustments * a little more logic around connection management * v2.0.2.3 * Fix peer discovery (#319) * Fix peer discovery * Make peer discovery connections parallel * Monitor peers via pings (#317) * Support QUILIBRIUM_SIGNATURE_CHECK in client (#314) * Ensure direct peers are not pruned by resource limits (#315) * Support pprof profiling via HTTP (#313) * Fix CPU profiling * Add pprof server support * Additional peering connection improvements (#320) * Lookup peers if not enough external peers are available * Make bootstrap peer discovery sensitive to a lack of bootstrappers --------- Co-authored-by: Tyler Sturos <55340199+tjsturos@users.noreply.github.com> Co-authored-by: Tyler Sturos <tyler.john@qcommander.sh> Co-authored-by: linquanisaac <33619994+linquanisaac@users.noreply.github.com> Co-authored-by: petricadaipegsp <155911522+petricadaipegsp@users.noreply.github.com>
83 lines
2.2 KiB
Docker
83 lines
2.2 KiB
Docker
FROM golang:1.22.4-bullseye as build-base
|
|
|
|
ENV PATH="${PATH}:/root/.cargo/bin/"
|
|
|
|
# Install GMP 6.2 (6.3 which MacOS is using only available on Debian unstable)
|
|
RUN apt-get update && apt-get install -y \
|
|
libgmp-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY docker/rustup-init.sh /opt/rustup-init.sh
|
|
|
|
RUN /opt/rustup-init.sh -y --profile minimal
|
|
|
|
# Install uniffi-bindgen-go
|
|
RUN cargo install uniffi-bindgen-go --git https://github.com/NordSecurity/uniffi-bindgen-go --tag v0.2.1+v0.25.0
|
|
|
|
FROM build-base as build
|
|
|
|
ENV GOEXPERIMENT=arenas
|
|
ENV QUILIBRIUM_SIGNATURE_CHECK=false
|
|
|
|
WORKDIR /opt/ceremonyclient
|
|
|
|
COPY . .
|
|
|
|
## Generate Rust bindings for VDF
|
|
WORKDIR /opt/ceremonyclient/vdf
|
|
RUN ./generate.sh
|
|
|
|
## Generate Rust bindings for BLS48581
|
|
WORKDIR /opt/ceremonyclient/bls48581
|
|
RUN ./generate.sh
|
|
|
|
# Build and install the node
|
|
WORKDIR /opt/ceremonyclient/node
|
|
|
|
RUN ./build.sh && cp node /go/bin
|
|
RUN go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest
|
|
|
|
# Build and install qclient
|
|
WORKDIR /opt/ceremonyclient/client
|
|
|
|
RUN ./build.sh -o qclient && cp qclient /go/bin
|
|
|
|
# Allows exporting single binary
|
|
FROM scratch as qclient
|
|
COPY --from=build /go/bin/qclient /qclient
|
|
ENTRYPOINT [ "/qclient" ]
|
|
|
|
# Allows exporting single binary
|
|
FROM scratch AS node
|
|
COPY --from=build /go/bin/node /node
|
|
ENTRYPOINT [ "/node" ]
|
|
|
|
FROM debian:bullseye
|
|
|
|
ARG NODE_VERSION
|
|
ARG GIT_REPO
|
|
ARG GIT_BRANCH
|
|
ARG GIT_COMMIT
|
|
|
|
ENV GOEXPERIMENT=arenas
|
|
|
|
LABEL org.opencontainers.image.title="Quilibrium Network Node"
|
|
LABEL org.opencontainers.image.description="Quilibrium is a decentralized alternative to platform as a service providers."
|
|
LABEL org.opencontainers.image.version=$NODE_VERSION
|
|
LABEL org.opencontainers.image.vendor=Quilibrium
|
|
LABEL org.opencontainers.image.url=https://quilibrium.com/
|
|
LABEL org.opencontainers.image.documentation=https://quilibrium.com/docs
|
|
LABEL org.opencontainers.image.source=$GIT_REPO
|
|
LABEL org.opencontainers.image.ref.name=$GIT_BRANCH
|
|
LABEL org.opencontainers.image.revision=$GIT_COMMIT
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates
|
|
|
|
COPY --from=build /go/bin/node /usr/local/bin
|
|
COPY --from=build /go/bin/grpcurl /usr/local/bin
|
|
COPY --from=build /opt/ceremonyclient/client/qclient /usr/local/bin
|
|
|
|
WORKDIR /root
|
|
|
|
ENTRYPOINT ["node"]
|