- Coin: Zano → Lethean, ticker: ZAN/ZANO → LTHN - Ports: 11211 → 36941 (mainnet RPC), 46941 (testnet RPC) - Wallet: 11212 → 36944/46944 - Address prefix: iTHN - URLs: zano.org → lethean.io - Explorer links: explorer.lthn.io Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
836 B
Text
25 lines
836 B
Text
# Quick image using pre-built binaries
|
|
# Build: docker build -f Dockerfile.prebuilt --build-arg BINARY_DIR=/path/to/binaries .
|
|
FROM ubuntu:22.04
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
libboost-filesystem1.74.0 libboost-thread1.74.0 \
|
|
libboost-program-options1.74.0 libboost-regex1.74.0 \
|
|
libboost-serialization1.74.0 libboost-system1.74.0 \
|
|
libboost-date-time1.74.0 libboost-chrono1.74.0 \
|
|
libboost-locale1.74.0 \
|
|
libssl3 libunwind8 curl && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY letheand /usr/local/bin/letheand
|
|
COPY simplewallet /usr/local/bin/simplewallet
|
|
|
|
RUN chmod +x /usr/local/bin/letheand /usr/local/bin/simplewallet && \
|
|
mkdir -p /data /wallet
|
|
|
|
VOLUME ["/data", "/wallet"]
|
|
|
|
EXPOSE 36941 36942
|
|
|
|
ENTRYPOINT ["letheand"]
|
|
CMD ["--rpc-bind-ip=0.0.0.0", "--rpc-bind-port=36941", "--data-dir=/data"]
|