2023-10-28 21:02:12 +00:00

15 lines
314 B
Docker

FROM ubuntu:22.04
RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y wget bzip2
RUN useradd -m matt
USER matt
WORKDIR /home/matt
RUN wget https://downloads.getmonero.org/linux64
RUN tar xvf linux64 && rm linux64
RUN mv monero-x86_64-linux-gnu-v0.18.3.1/ monero/
COPY --chown=matt:matt entry.sh ./