Changeset View
Changeset View
Standalone View
Standalone View
contrib/docker/chronik-plugins/Dockerfile
| Show All 19 Lines | |||||
| # WARNING this should be in sync with the base image from bitcoin-abc-dev ! | # WARNING this should be in sync with the base image from bitcoin-abc-dev ! | ||||
| FROM debian:bookworm-slim | FROM debian:bookworm-slim | ||||
| RUN apt update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | RUN apt update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||||
| libdb5.3++ \ | libdb5.3++ \ | ||||
| libevent-2.1-7 \ | libevent-2.1-7 \ | ||||
| libevent-pthreads-2.1-7 \ | libevent-pthreads-2.1-7 \ | ||||
| libminiupnpc17 \ | libminiupnpc17 \ | ||||
| libnatpmp1 \ | |||||
| libprotobuf32 \ | libprotobuf32 \ | ||||
| libpython3.11 \ | libpython3.11 \ | ||||
| libzmq5 | libzmq5 | ||||
| COPY --from=builder /installed/bin/* /usr/local/bin/ | COPY --from=builder /installed/bin/* /usr/local/bin/ | ||||
| RUN mkdir -p /bitcoin-abc/modules/ecash-agora | RUN mkdir -p /bitcoin-abc/modules/ecash-agora | ||||
| COPY --from=builder /bitcoin-abc/modules/ecash-agora/agora.py /bitcoin-abc/modules/ecash-agora/ | COPY --from=builder /bitcoin-abc/modules/ecash-agora/agora.py /bitcoin-abc/modules/ecash-agora/ | ||||
| Show All 25 Lines | |||||