mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 20:17:54 +00:00
16 lines
384 B
Docker
16 lines
384 B
Docker
FROM ubuntu:24.04
|
|
|
|
RUN apt-get update && apt-get -y upgrade
|
|
RUN apt-get install -y wget bzip2
|
|
|
|
WORKDIR /root
|
|
|
|
# currently v0.18.4.2
|
|
RUN wget -O monerod.tar.bz2 https://downloads.getmonero.org/cli/monero-linux-x64-v0.18.4.2.tar.bz2
|
|
RUN tar xvf monerod.tar.bz2 && rm monerod.tar.bz2
|
|
RUN mv monero-x86_64-linux-gnu-v0.18.4.2 monero
|
|
|
|
COPY entry.sh ./
|
|
|
|
CMD ["/bin/bash", "/root/entry.sh"]
|