https://github.com/marcellodesales/ubuntu-python-ninja-docker
Base docker image for python and ninja, used in Machine Learning, OpenCV, etc
https://github.com/marcellodesales/ubuntu-python-ninja-docker
Last synced: 7 months ago
JSON representation
Base docker image for python and ninja, used in Machine Learning, OpenCV, etc
- Host: GitHub
- URL: https://github.com/marcellodesales/ubuntu-python-ninja-docker
- Owner: marcellodesales
- Created: 2022-01-17T10:04:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-11T10:19:12.000Z (over 4 years ago)
- Last Synced: 2025-02-03T10:46:22.401Z (over 1 year ago)
- Language: Dockerfile
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Ninja Base image
Image used for OpenCV (Computer Vision), usually used in Machine Learning models for image processing.
To visualize the info, use the container:
```console
$ docker run -ti marcellodesales/ubuntu:python-3.8-ninja-1.8.2 python3 --version
Python 3.8.10
$ docker run -ti marcellodesales/ubuntu:python-3.8-ninja-1.8.2 ninja --version
1.10.2.git.kitware.jobserver-1
```
# Build
```console
docker-compose build
```
# Reuse
```dockerfile
FROM marcellodesales/ubuntu:python-3.8-ninja-1.8.2 ninja
```