2023-09-10 11:21:51 +00:00

15 lines
311 B
Docker

FROM ubuntu:22.04
RUN apt-get update && apt-get 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.2.2/ monero/
COPY --chown=matt:matt entry.sh ./