diff --git a/dockerfiles/monero_compile b/dockerfiles/monero_compile index 5e275f7..eb8bdfe 100644 --- a/dockerfiles/monero_compile +++ b/dockerfiles/monero_compile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 as og +FROM ubuntu:22.10 as og ENV DEBIAN_FRONTEND noninteractive ARG threads diff --git a/dockerfiles/monero_nocompile b/dockerfiles/monero_nocompile index f7caf27..0d20999 100644 --- a/dockerfiles/monero_nocompile +++ b/dockerfiles/monero_nocompile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 +FROM ubuntu:22.10 ENV MONERO_HASH 9318e522a5cf95bc856772f15d7507fdef2c028e01f70d020078ad5e208f1304 ENV MONERO_DL_URL https://downloads.getmonero.org/cli/monero-linux-x64-v0.18.1.0.tar.bz2 @@ -15,7 +15,7 @@ WORKDIR /opt/monero RUN apt-get update \ && apt-get upgrade -y \ - && apt-get install -y tar wget + && apt-get install -y tar wget bzip2 RUN wget -qO ${MONERO_DL_FILE} ${MONERO_DL_URL} \ && echo "${MONERO_HASH} ${MONERO_DL_FILE}" > ${MONERO_SUMS_FILE} \