mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 20:17:54 +00:00
13 lines
258 B
Docker
13 lines
258 B
Docker
FROM ubuntu:22.04
|
|
|
|
WORKDIR /root
|
|
|
|
RUN apt-get update && apt-get upgrade
|
|
RUN apt-get install -y wget bzip2
|
|
|
|
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 entry.sh ./
|