We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5c0cc8 commit c70e35aCopy full SHA for c70e35a
tools/gen_ort_dockerfile.py
@@ -383,7 +383,8 @@ def dockerfile_for_linux(output_file):
383
# Linking compiled ONNX Runtime libraries to their corresponding versioned libraries
384
df += """
385
RUN cd /opt/onnxruntime/lib \
386
- && ln -s libonnxruntime.so libonnxruntime.so.${ONNXRUNTIME_VERSION}
+ && ln -s libonnxruntime.so libonnxruntime.so.1 \
387
+ && ln -s libonnxruntime.so.1 libonnxruntime.so.${ONNXRUNTIME_VERSION}
388
"""
389
390
RUN cd /opt/onnxruntime/lib && \
0 commit comments