Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.0

USER 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.sh

ENTRYPOINT [ "bash" ]
```