From 5f971f4bf3e64294e34661d7563dfee81929e8c5 Mon Sep 17 00:00:00 2001 From: sethforprivacy Date: Wed, 2 Nov 2022 16:28:42 -0400 Subject: [PATCH] Bump base images to ubuntu:latest --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ce42b9..709d258 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG P2POOL_BRANCH=v2.5 -# Select Ubuntu 20.04LTS for the build image base -FROM ubuntu:20.04 as build +# Select latest Ubuntu LTS for the build image base +FROM ubuntu:latest as build LABEL author="sethforprivacy@protonmail.com" \ maintainer="sethforprivacy@protonmail.com" @@ -30,8 +30,8 @@ RUN git clone --recursive --branch ${P2POOL_BRANCH} https://github.com/SChernykh ARG NPROC RUN test -z "$NPROC" && nproc > /nproc || echo -n "$NPROC" > /nproc && mkdir build && cd build && cmake .. && make -j"$(cat /nproc)" -# Select Ubuntu 20.04LTS for the image base -FROM ubuntu:20.04 +# Select latest Ubuntu LTS for the image base +FROM ubuntu:latest # Install remaining dependencies RUN apt-get update \