Skip to content

Commit 9f06616

Browse files
author
Tim Schneider
committed
Switched docker container to manylinux_2_34_x86_64 and set LD_LIBRARY_PATH correctly
1 parent f470dda commit 9f06616

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docker/build/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/pypa/manylinux2014_x86_64:latest
1+
FROM quay.io/pypa/manylinux_2_34_x86_64:latest
22

33
LABEL maintainer="Tim Schneider <tim@robot-learning.de>"
44

docker/common/manylinux-build-wheels

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/bin/bash
22
set -e
33

4+
export LD_LIBRARY_PATH="/usr/local/lib64" # For whatever reason, this has to be set manually
5+
46
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
57
. "${SCRIPT_DIR}/dependency_versions"
68

0 commit comments

Comments
 (0)