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
This commit is contained in:
parent
eee0260a68
commit
4dcb262c2d
@ -5,7 +5,7 @@ ARG PORTABLE
|
|||||||
ENV PORTABLE $PORTABLE
|
ENV PORTABLE $PORTABLE
|
||||||
RUN cd lighthouse && make
|
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 \
|
RUN apt-get update && apt-get -y upgrade && apt-get install -y --no-install-recommends \
|
||||||
libssl-dev \
|
libssl-dev \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# This image is meant to enable cross-architecture builds.
|
# This image is meant to enable cross-architecture builds.
|
||||||
# It assumes the lighthouse binary has already been
|
# It assumes the lighthouse binary has already been
|
||||||
# compiled for `$TARGETPLATFORM` and moved to `./bin`.
|
# 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 \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
libssl-dev \
|
libssl-dev \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
@ -8,6 +8,6 @@ ARG PORTABLE
|
|||||||
ENV PORTABLE $PORTABLE
|
ENV PORTABLE $PORTABLE
|
||||||
RUN cd lighthouse && make install-lcli
|
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/*
|
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
|
COPY --from=builder /usr/local/cargo/bin/lcli /usr/local/bin/lcli
|
||||||
|
Loading…
Reference in New Issue
Block a user