mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
* Add nGraph Execution Provider * feedback changes 1 * feedback2 * Feedback and upgrade nGraph * Feedback 4 * Fix CI * Disable new ops
20 lines
516 B
Text
20 lines
516 B
Text
#-------------------------------------------------------------------------
|
|
# Copyright(C) 2019 Intel Corporation.
|
|
# Licensed under the MIT License.
|
|
#--------------------------------------------------------------------------
|
|
|
|
FROM ubuntu:16.04
|
|
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y sudo \
|
|
build-essential curl \
|
|
libcurl4-openssl-dev \
|
|
libssl-dev wget \
|
|
python 3.6 python3-pip \
|
|
python3-dev git
|
|
RUN pip3 install --upgrade pip
|
|
RUN pip3 install numpy onnx
|
|
|
|
RUN pip3 install onnxruntime-ngraph
|
|
WORKDIR /code
|