mirror of
https://github.com/romanz/electrs.git
synced 2025-02-24 06:57:53 +01:00
27 lines
533 B
Docker
27 lines
533 B
Docker
FROM rust:1.44.1-slim-buster
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends clang=1:7.* cmake=3.* \
|
|
libsnappy-dev=1.* curl \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN adduser --disabled-login --system --shell /bin/false --uid 1000 user
|
|
|
|
WORKDIR /home/user
|
|
COPY ./ /home/user
|
|
RUN chown -R user .
|
|
|
|
USER user
|
|
|
|
RUN cargo install --locked --path .
|
|
|
|
# Electrum RPC
|
|
EXPOSE 50001
|
|
|
|
# Prometheus monitoring
|
|
EXPOSE 4224
|
|
|
|
STOPSIGNAL SIGINT
|
|
|
|
HEALTHCHECK CMD curl -fSs http://localhost:4224/ || exit 1
|