add nomadnet

This commit is contained in:
sigil-03 2025-12-17 21:42:27 -07:00
parent 3fde0ef154
commit b04a4faa0a
4 changed files with 30 additions and 0 deletions

20
nomadnet/Containerfile Normal file
View file

@ -0,0 +1,20 @@
FROM debian:stable-slim
# INSTALL PYTHON
RUN apt-get update && \
apt-get install -y --no-install-recommends \
python3 \
python3-venv \
python3-pip && \
apt-get clean
# SET UP VENV AND INSTALL RNSD
WORKDIR /app
COPY setup.sh ./
RUN ./setup.sh
# LOAD RUN SCRIPT
COPY run.sh ./
ENTRYPOINT ["bash","/app/run.sh"]