mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-15 20:50:42 +00:00
* Added test data arguments to build.py, modified win-ci-pipeline build. * Updated CI builds to use template tasks, added test data args, removed AZURE_BLOB_KEY uses. * Fixed up set test data step template.
10 lines
373 B
Text
10 lines
373 B
Text
ARG OS_VERSION=27
|
|
FROM fedora:${OS_VERSION}
|
|
# nvidia-container-runtime
|
|
ENV NVIDIA_VISIBLE_DEVICES=all \
|
|
NVIDIA_DRIVER_CAPABILITIES=compute,utility \
|
|
NVIDIA_REQUIRE_CUDA="cuda>=9.2" \
|
|
PATH="/usr/lib64/ccache:/opt/cmake/bin:${PATH}"
|
|
ADD scripts /tmp/scripts
|
|
RUN cd /tmp/scripts && /tmp/scripts/install_fedora_gpu.sh && /tmp/scripts/install_deps.sh && rm -rf /tmp/scripts
|
|
|