12 lines
346 B
Docker
12 lines
346 B
Docker
FROM rust:1.40.0 AS builder
|
|
COPY . lighthouse
|
|
RUN cd lighthouse && make && cargo clean
|
|
|
|
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
|