From 6b476e20fe6dafd546caf4ae65d40f23cad72497 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=90=CE=B9=CF=83=D0=B8?= Date: Fri, 12 Apr 2024 10:15:53 +0200 Subject: [PATCH] Updated Dockerfile --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1c373cbc9..1f40627b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Multistage docker build, requires docker 17.05 # builder stage -FROM ubuntu:20.04 as builder +FROM ubuntu:mantic-20240216 as builder RUN set -ex && \ apt-get update && \ @@ -32,7 +32,7 @@ RUN set -ex && \ fi # runtime stage -FROM ubuntu:20.04 +FROM ubuntu:mantic-20240216 RUN set -ex && \ apt-get update && \ @@ -63,4 +63,3 @@ USER monero ENTRYPOINT ["monerod"] CMD ["--p2p-bind-ip=0.0.0.0", "--p2p-bind-port=18080", "--rpc-bind-ip=0.0.0.0", "--rpc-bind-port=18081", "--non-interactive", "--confirm-external-bind"] -