diff --git a/Dockerfile b/Dockerfile index 0a3145eb842..8626ed2520b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM rust:1.41.0 AS builder +FROM rust:1.41.1 AS builder COPY . lighthouse RUN cd lighthouse && make -RUN cd lighthouse && cargo install --path lcli +RUN cd lighthouse && cargo install --path lcli --locked FROM debian:buster-slim RUN apt-get update && apt-get install -y --no-install-recommends \ diff --git a/Makefile b/Makefile index 8a93fef0f58..7d55593998f 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ EF_TESTS = "tests/ef_tests" # # Binaries will most likely be found in `./target/release` install: - cargo install --path lighthouse --force + cargo install --path lighthouse --force --locked # Runs the full workspace tests in **release**, without downloading any additional # test vectors.