Compare commits

..

No commits in common. "nomadnet" and "main" have entirely different histories.

4 changed files with 0 additions and 30 deletions

View file

@ -1,20 +0,0 @@
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"]

View file

@ -1,2 +0,0 @@
#!/bin/bash
podman run --rm -d --network=host -v ./config:/app/config:Z -v ~/.config/rnsd:/app/reticulum:Z nomadnet

View file

@ -1,3 +0,0 @@
#!/bin/bash
source venv/bin/activate
nomadnet --config /app/config --rnsconfig /app/reticulum -d

View file

@ -1,5 +0,0 @@
#!/bin/bash
pwd
python3 -m venv venv
source venv/bin/activate
pip install nomadnet