mirror of
https://github.com/linuxserver/docker-mods.git
synced 2026-01-24 08:43:31 +08:00
14 lines
378 B
Plaintext
Executable File
14 lines
378 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
|
|
if ! dpkg -l | grep python3-dev > /dev/null; then
|
|
echo "**** Adding python3 to package install list ****"
|
|
echo "\
|
|
build-essential \
|
|
libssl-dev \
|
|
libffi-dev \
|
|
python3-dev \
|
|
python3-pip \
|
|
python3-venv" >> /mod-repo-packages-to-install.list
|
|
else
|
|
echo "**** python3 already installed ****"
|
|
fi |