2020-03-05 12:50:24 +11:00
|
|
|
FROM rust:1.41.1 AS builder
|
2019-11-25 15:48:24 +11:00
|
|
|
COPY . lighthouse
|
2020-03-04 14:28:02 +11:00
|
|
|
RUN cd lighthouse && make
|
2020-03-05 12:50:24 +11:00
|
|
|
RUN cd lighthouse && cargo install --path lcli --locked
|
2019-12-19 23:30:38 -08:00
|
|
|
|
|
|
|
FROM debian:buster-slim
|
2020-01-19 13:49:59 -07:00
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
libssl-dev \
|
|
|
|
ca-certificates \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2019-12-19 23:30:38 -08:00
|
|
|
COPY --from=builder /usr/local/cargo/bin/lighthouse /usr/local/bin/lighthouse
|
2020-03-04 14:28:02 +11:00
|
|
|
COPY --from=builder /usr/local/cargo/bin/lcli /usr/local/bin/lcli
|