1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-06-04 23:24:55 -04:00

Update Dockerfile-dev to fix plugin permissions

This patch changes the user creation to include creating
a home directory so the plugin install installs those plugins
as a --user option.
This commit is contained in:
2023-07-17 21:57:39 +00:00
parent 2825cac446
commit d8318f2ae2
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ if [ ! -z "${APRSD_PLUGINS}" ]; then
IFS=$OLDIFS
# call your procedure/other scripts here below
echo "Installing '$plugin'"
pip3 install $plugin
pip3 install --user $plugin
done
fi
+1 -1
View File
@@ -9,7 +9,7 @@ if [ ! -z "${APRSD_PLUGINS}" ]; then
IFS=$OLDIFS
# call your procedure/other scripts here below
echo "Installing '$plugin'"
pip3 install $plugin
pip3 install --user $plugin
done
fi
+1 -1
View File
@@ -9,7 +9,7 @@ if [ ! -z "${APRSD_PLUGINS}" ]; then
IFS=$OLDIFS
# call your procedure/other scripts here below
echo "Installing '$plugin'"
pip3 install $plugin
pip3 install --user $plugin
done
fi