diff --git a/Dockerfile b/Dockerfile index bc4430779d..c0a2f9388f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ FROM rust:1.50.0 AS builder -RUN apt-get update && apt-get install -y cmake +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 install -y --no-install-recommends \ +RUN apt-get update && apt-get -y upgrade && apt-get install -y --no-install-recommends \ libssl-dev \ ca-certificates \ && apt-get clean \