Compare commits
No commits in common. "nomadnet" and "main" have entirely different histories.
4 changed files with 0 additions and 30 deletions
|
|
@ -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"]
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
podman run --rm -d --network=host -v ./config:/app/config:Z -v ~/.config/rnsd:/app/reticulum:Z nomadnet
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
source venv/bin/activate
|
|
||||||
nomadnet --config /app/config --rnsconfig /app/reticulum -d
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
pwd
|
|
||||||
python3 -m venv venv
|
|
||||||
source venv/bin/activate
|
|
||||||
pip install nomadnet
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue