[add] install required packages for scripts

This commit is contained in:
oldnick85
2023-02-10 22:54:45 +03:00
parent a991f19ca3
commit 269e2bf11e
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ RUN DEBIAN_FRONTEND=noninteractive\
RUN DEBIAN_FRONTEND=noninteractive\
apt-get install -y \
libminiupnpc17 \
git python3 iputils-ping
git python3 python3-pip iputils-ping
# Ports Used by I2P
# Webconsole
EXPOSE 7070
+2
View File
@@ -1,5 +1,6 @@
#!/bin/bash
git clone https://github.com/oldnick85/yggdrasil_get_keys.git /tmp/yggdrasil_get_keys
python3 -m pip install -r /tmp/yggdrasil_get_keys/requirements.txt
python3 /tmp/yggdrasil_get_keys/yggdrasil_get_keys.py \
--genkeys="/YGGDRASIL/genkeys" \
--yggdrasil-conf="/YGGDRASIL/yggdrasil.conf" \
@@ -7,6 +8,7 @@ python3 /tmp/yggdrasil_get_keys/yggdrasil_get_keys.py \
--environment
rm -rf /tmp/yggdrasil_get_keys
git clone https://github.com/oldnick85/yggdrasil_find_public_peers.git /tmp/yggdrasil_find_public_peers
python3 -m pip install -r /tmp/yggdrasil_find_public_peers/requirements.txt
python3 /tmp/yggdrasil_find_public_peers/yggdrasil_find_public_peers.py \
--yggdrasil-conf="/YGGDRASIL/yggdrasil.conf" \
--parallel=4 \