11 lines
118 B
Bash
11 lines
118 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
installPython()
|
||
|
{
|
||
|
apk add --no-cache python3
|
||
|
ln -sf python3 /usr/bin/python
|
||
|
}
|
||
|
|
||
|
installPython
|