9461ac2d50
## Issue Addressed None. ## Proposed Changes Run apt-get upgrade to install latest security updates. ## Additional Info Images often take a long time to get the latest security updates, while running apt-get upgrade will pull the latest updates. Co-authored-by: Age Manning <Age@AgeManning.com>
15 lines
458 B
Docker
15 lines
458 B
Docker
FROM rust:1.50.0 AS builder
|
|
RUN apt-get update && apt-get -y upgrade && apt-get install -y cmake
|
|
COPY . lighthouse
|
|
ARG PORTABLE
|
|
ENV PORTABLE $PORTABLE
|
|
RUN cd lighthouse && make
|
|
|
|
FROM debian:buster-slim
|
|
RUN apt-get update && apt-get -y upgrade && 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
|