mirror of
https://github.com/luzifer-docker/docker-compose.git
synced 2024-12-20 17:51:16 +00:00
22 lines
318 B
Bash
Executable file
22 lines
318 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
build_requirements=(
|
|
build-base
|
|
libffi-dev
|
|
openssl-dev
|
|
)
|
|
|
|
run_requirements=(
|
|
libffi
|
|
openssl
|
|
)
|
|
|
|
apk --no-cache add \
|
|
"${build_requirements[@]}" \
|
|
"${run_requirements[@]}"
|
|
|
|
pip install --no-cache-dir -r /opt/setup/requirements.txt
|
|
|
|
apk --no-cache del \
|
|
"${build_requirements[@]}"
|