Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruhyadi/openvino-devkit
Openvino development kit in docker
https://github.com/ruhyadi/openvino-devkit
Last synced: about 10 hours ago
JSON representation
Openvino development kit in docker
- Host: GitHub
- URL: https://github.com/ruhyadi/openvino-devkit
- Owner: ruhyadi
- License: apache-2.0
- Created: 2022-08-28T11:29:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-15T13:48:04.000Z (about 2 years ago)
- Last Synced: 2024-11-08T20:51:05.007Z (about 2 months ago)
- Language: Dockerfile
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenVINO Devkit
> OpenVINO Docker build devkit## Build Docker Image
Edit `dockerfile` in your need to build docker image for openvino devkit.
```yaml
# syntax=docker/dockerfile:1
FROM openvino/ubuntu20_dev:2022.2.0USER root
LABEL maintainer="Didi Ruhyadi "
# install package
RUN apt-get update -qq && \
apt-get install -y --no-install-recommends \
build-essential git nano wget zip unzip cmake pkg-config \
ffmpeg libsm6 libxext6 && \
rm -rf /var/cache/apk/*WORKDIR /opt/intel/openvino
# setup variables path
RUN bash setupvars.shENTRYPOINT [ "bash" ]
```