mirror of
https://github.com/romanz/electrs.git
synced 2024-11-19 09:54:09 +01:00
e9b80bd2ea
This prevents `cargo` from changing the dependencies during build. Closes #329
28 lines
533 B
Docker
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
|