mirror of
https://github.com/linuxserver/docker-mods.git
synced 2026-03-23 00:05:28 +08:00
15 lines
379 B
Plaintext
Executable File
15 lines
379 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
|