From 4dcb262c2dbd3141e9e8475df550ba1191a9296a Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Wed, 15 Dec 2021 07:44:44 +0000 Subject: [PATCH] Update docker images to Ubuntu latest (#2862) ## Issue Addressed - Resolves #2778 ## Proposed Changes Updates docker images from Buster (10) to Bullseye (11), since Bullseye is [listed](https://www.debian.org/releases/) as the "current stable release". ## Additional Info NA --- Dockerfile | 2 +- Dockerfile.cross | 2 +- lcli/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f8475012e..81aff8834 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG PORTABLE ENV PORTABLE $PORTABLE RUN cd lighthouse && make -FROM debian:buster-slim +FROM ubuntu:latest RUN apt-get update && apt-get -y upgrade && apt-get install -y --no-install-recommends \ libssl-dev \ ca-certificates \ diff --git a/Dockerfile.cross b/Dockerfile.cross index 17402b440..c8bd86887 100644 --- a/Dockerfile.cross +++ b/Dockerfile.cross @@ -1,7 +1,7 @@ # This image is meant to enable cross-architecture builds. # It assumes the lighthouse binary has already been # compiled for `$TARGETPLATFORM` and moved to `./bin`. -FROM --platform=$TARGETPLATFORM debian:buster-slim +FROM --platform=$TARGETPLATFORM ubuntu:latest RUN apt-get update && apt-get install -y --no-install-recommends \ libssl-dev \ ca-certificates \ diff --git a/lcli/Dockerfile b/lcli/Dockerfile index 47ce737c9..bddf39a43 100644 --- a/lcli/Dockerfile +++ b/lcli/Dockerfile @@ -8,6 +8,6 @@ ARG PORTABLE ENV PORTABLE $PORTABLE RUN cd lighthouse && make install-lcli -FROM debian:buster-slim +FROM ubuntu:latest RUN apt-get update && apt-get -y upgrade && apt-get clean && rm -rf /var/lib/apt/lists/* COPY --from=builder /usr/local/cargo/bin/lcli /usr/local/bin/lcli