11 lines
137 B
Bash
11 lines
137 B
Bash
![]() |
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
apk add --update \
|
||
|
python3 \
|
||
|
python3-dev \
|
||
|
py3-pip
|
||
|
|
||
|
if [ ! -e /usr/bin/pip ]; then ln -s pip3 /usr/bin/pip ; fi
|
||
|
|