1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00
electrs/Dockerfile
Martin Habovstiak e9b80bd2ea Run cargo install with --locked in Dockerfile
This prevents `cargo` from changing the dependencies during build.

Closes #329
2020-11-23 16:26:42 +01:00

28 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