mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-04 13:34:32 +08:00
Fix: Do not install "msal" on linux/386 as the compilation fails
This commit is contained in:
parent
6fd4b113ab
commit
676da62a7f
1 changed files with 3 additions and 1 deletions
|
@ -56,7 +56,9 @@ setup_rust() {
|
|||
setup_python_venv() {
|
||||
python3 -m venv /sasl
|
||||
. /sasl/bin/activate
|
||||
pip3 install msal
|
||||
if [[ "$(uname -m)"!= "386" ]] && [[ "$(uname -m)"!= "i386" ]]; then
|
||||
pip3 install msal
|
||||
fi
|
||||
}
|
||||
|
||||
# Installs the base components into the docker image:
|
||||
|
|
Loading…
Add table
Reference in a new issue