lighthouse/Dockerfile
Paul Hauner d9d00cc05d
Update lru, leveldb. Run cargo update (#1249)
* Update lru, leveldb. Run cargo update

* Add cmake to docker image

* Move cmake dep in dockerfile
2020-06-06 16:39:42 +10:00

15 lines
500 B
Docker

FROM rust:1.43.1 AS builder
RUN apt-get update && apt-get install -y cmake
COPY . lighthouse
RUN cd lighthouse && make
RUN cd lighthouse && cargo install --path lcli --locked
FROM debian:buster-slim
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
COPY --from=builder /usr/local/cargo/bin/lcli /usr/local/bin/lcli