mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 12:07:56 +00:00
15 lines
351 B
Docker
15 lines
351 B
Docker
FROM ubuntu:24.04
|
|
|
|
RUN apt-get update && apt-get -y upgrade
|
|
RUN apt-get install -y wget unzip
|
|
|
|
WORKDIR /root
|
|
|
|
# currently v2.0.1
|
|
RUN wget -O tari.zip https://github.com/tari-project/tari/releases/download/v2.0.1/tari_suite-2.0.1-09831ca-linux-x86_64.zip
|
|
RUN unzip tari.zip -d tari && rm tari.zip
|
|
|
|
COPY entry.sh ./
|
|
|
|
CMD ["/bin/bash", "/root/entry.sh"]
|