56d999f6f1
Bumps clientversion + all packaging metadata from 6.1.6 to 6.1.7. Includes only the v6.1.6 polish changes plus the Total-bold fix from PR #24 (font-weight bumped from 75 to 900). CHANGELOG entry added. Not included in v6.1.7 (will be addressed in v6.1.8 once we have repro data from a user observing the rule on real stakes): - Any widening of the 3-tier amount-color Confirming tier - Any 'use depth directly instead of status enum' rewrite - Any changes to the dataChanged() signaling path The Total label will now render at full bold weight 900 instead of medium-bold 75, which should make it visibly heavier than the Spendable / Stake / Unconfirmed rows on the Overview panel.
39 lines
993 B
Docker
39 lines
993 B
Docker
FROM ubuntu:22.04
|
|
|
|
LABEL maintainer="Cryptographic Triangles Team"
|
|
LABEL description="Cryptographic Triangles (TRI) headless daemon"
|
|
LABEL version="6.1.7"
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
curl \
|
|
libssl3 \
|
|
libdb5.3++ \
|
|
libboost-system1.74.0 \
|
|
libboost-filesystem1.74.0 \
|
|
libboost-program-options1.74.0 \
|
|
libboost-thread1.74.0 \
|
|
libboost-chrono1.74.0 \
|
|
libevent-2.1-7 \
|
|
libminiupnpc17 \
|
|
tor \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ARG VERSION=5.7.6
|
|
RUN curl -L -o /usr/local/bin/trianglesd \
|
|
https://github.com/SamiAhmed7777/triangles_v5/releases/download/v${VERSION}/Cryptographic-Triangles-v${VERSION}-linux-x64-daemon \
|
|
&& chmod +x /usr/local/bin/trianglesd
|
|
|
|
RUN useradd -m -s /bin/bash triangles
|
|
USER triangles
|
|
WORKDIR /home/triangles
|
|
|
|
RUN mkdir -p .triangles
|
|
|
|
EXPOSE 24112 19112
|
|
|
|
VOLUME ["/home/triangles/.triangles"]
|
|
|
|
ENTRYPOINT ["trianglesd"]
|
|
CMD ["-printtoconsole", "-txindex=1"]
|