diff --git a/nomadnet/Containerfile b/nomadnet/Containerfile deleted file mode 100644 index fd8b98f..0000000 --- a/nomadnet/Containerfile +++ /dev/null @@ -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"] diff --git a/nomadnet/launch.sh b/nomadnet/launch.sh deleted file mode 100755 index a04c512..0000000 --- a/nomadnet/launch.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -podman run --rm -d --network=host -v ./config:/app/config:Z -v ~/.config/rnsd:/app/reticulum:Z nomadnet diff --git a/nomadnet/run.sh b/nomadnet/run.sh deleted file mode 100755 index 5ff4ea6..0000000 --- a/nomadnet/run.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -source venv/bin/activate -nomadnet --config /app/config --rnsconfig /app/reticulum -d diff --git a/nomadnet/setup.sh b/nomadnet/setup.sh deleted file mode 100755 index 62eba99..0000000 --- a/nomadnet/setup.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -pwd -python3 -m venv venv -source venv/bin/activate -pip install nomadnet