https://github.com/denismakogon/opencv-slim
OpenCV v3 with Python 3.6 on Debian
https://github.com/denismakogon/opencv-slim
debian docker docker-image dockerfile edge fnproject opencv opencv3 python python3 serverless tensorflow
Last synced: about 2 months ago
JSON representation
OpenCV v3 with Python 3.6 on Debian
- Host: GitHub
- URL: https://github.com/denismakogon/opencv-slim
- Owner: denismakogon
- Created: 2018-04-10T10:50:45.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-10T15:37:19.000Z (about 7 years ago)
- Last Synced: 2025-02-12T07:45:30.293Z (3 months ago)
- Topics: debian, docker, docker-image, dockerfile, edge, fnproject, opencv, opencv3, python, python3, serverless, tensorflow
- Language: Python
- Size: 1.95 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenCV slim stretch Docker image
This is probably the smallest base image that contains complete OpenCV 3.4, Python 3.6 on Debian.
## What's in base image?
- Python 3.6
- OpenCV 3.4.1 for Python 3.6
## What you can do with this?- Any Python 3.6 applications with OpenCV libs
## Example
Here's the Python sample app that you can find [here](example).
```dockerfile
FROM denismakogon/opencv3-slim:edgeADD . /function/
WORKDIR /function/
RUN pip install --no-cache --no-cache-dir --upgrade -r requirements.txt
RUN rm -fr ~/.cache/pip /tmp*ENTRYPOINT ["python", "/function/main.py"]
```## TODO
- add contrib dependencies