1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00

Run cargo install with --locked in Dockerfile

This prevents `cargo` from changing the dependencies during build.

Closes #329
This commit is contained in:
Martin Habovstiak 2020-11-23 16:26:42 +01:00
parent ceb899fd8f
commit e9b80bd2ea

View File

@ -14,7 +14,7 @@ RUN chown -R user .
USER user
RUN cargo install --path .
RUN cargo install --locked --path .
# Electrum RPC
EXPOSE 50001