We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08ca950 commit c141f1cCopy full SHA for c141f1c
Dockerfile
@@ -1,7 +1,7 @@
1
-FROM rust:1.41.0 AS builder
+FROM rust:1.41.1 AS builder
2
COPY . lighthouse
3
RUN cd lighthouse && make
4
-RUN cd lighthouse && cargo install --path lcli
+RUN cd lighthouse && cargo install --path lcli --locked
5
6
FROM debian:buster-slim
7
RUN apt-get update && apt-get install -y --no-install-recommends \
Makefile
@@ -6,7 +6,7 @@ EF_TESTS = "tests/ef_tests"
#
# Binaries will most likely be found in `./target/release`
8
install:
9
- cargo install --path lighthouse --force
+ cargo install --path lighthouse --force --locked
10
11
# Runs the full workspace tests in **release**, without downloading any additional
12
# test vectors.
0 commit comments