mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-02 16:21:42 +00:00
fix(dockerfile): Add ca-certificates so eth1 calls work in docker. (#796)
This commit is contained in:
@@ -3,5 +3,9 @@ COPY . lighthouse
|
||||
RUN cd lighthouse && make && cargo clean
|
||||
|
||||
FROM debian:buster-slim
|
||||
RUN apt-get update && apt-get install -y libssl-dev
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
libssl-dev \
|
||||
ca-certificates \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
COPY --from=builder /usr/local/cargo/bin/lighthouse /usr/local/bin/lighthouse
|
||||
|
||||
Reference in New Issue
Block a user