Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tools/gen_ort_dockerfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ def dockerfile_for_linux(output_file):
zip \
ca-certificates \
curl \
patchelf \
python3-pip \
git \
gnupg \
gnupg1 \
openssl-devel

RUN pip3 install patchelf==0.17.2
"""
else:
df += """
Expand All @@ -143,13 +143,14 @@ def dockerfile_for_linux(output_file):
curl \
libcurl4-openssl-dev \
libssl-dev \
patchelf \
python3-dev \
python3-pip \
git \
gnupg \
gnupg1

RUN pip3 install patchelf==0.17.2

# Install dependencies from
# onnxruntime/dockerfiles/scripts/install_common_deps.sh.
RUN apt update -q=2 \\
Expand Down
Loading