{"id":21035273,"url":"https://github.com/skellla/docker-opencv-dlib-node","last_synced_at":"2026-04-07T07:47:38.772Z","repository":{"id":66143022,"uuid":"128880333","full_name":"SkeLLLa/docker-opencv-dlib-node","owner":"SkeLLLa","description":"Docker image with bundled opencv, dlib and node.js runtime. [AutoBuild]","archived":false,"fork":false,"pushed_at":"2018-06-03T09:07:55.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-07T23:47:45.891Z","etag":null,"topics":["dlib","docker","docker-image","node","nodejs","opencv"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/m03geek/opencv-dlib-node/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SkeLLLa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-04-10T05:49:56.000Z","updated_at":"2018-06-03T09:07:52.000Z","dependencies_parsed_at":"2023-03-04T13:45:40.127Z","dependency_job_id":null,"html_url":"https://github.com/SkeLLLa/docker-opencv-dlib-node","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/SkeLLLa/docker-opencv-dlib-node","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkeLLLa%2Fdocker-opencv-dlib-node","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkeLLLa%2Fdocker-opencv-dlib-node/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkeLLLa%2Fdocker-opencv-dlib-node/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkeLLLa%2Fdocker-opencv-dlib-node/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SkeLLLa","download_url":"https://codeload.github.com/SkeLLLa/docker-opencv-dlib-node/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SkeLLLa%2Fdocker-opencv-dlib-node/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31504897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dlib","docker","docker-image","node","nodejs","opencv"],"created_at":"2024-11-19T13:14:25.155Z","updated_at":"2026-04-07T07:47:38.750Z","avatar_url":"https://github.com/SkeLLLa.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# docker-opencv-dlib-node\n\nDocker image with compiled OpenCV, Dlib and Node.js\n\n[![](https://images.microbadger.com/badges/version/m03geek/opencv-dlib-node:alpine.svg)](https://microbadger.com/images/m03geek/opencv-dlib-node:alpine \"version\")[![](https://images.microbadger.com/badges/image/m03geek/opencv-dlib-node:alpine.svg)](https://microbadger.com/images/m03geek/opencv-dlib-node:alpine \"layers\")\n\n[![](https://images.microbadger.com/badges/version/m03geek/opencv-dlib-node:stretch.svg)](https://microbadger.com/images/m03geek/opencv-dlib-node:stretch \"version\")[![](https://images.microbadger.com/badges/image/m03geek/opencv-dlib-node:stretch.svg)](https://microbadger.com/images/m03geek/opencv-dlib-node:stretch \"layers\")\n\nBased on [opencv-dlib image](https://hub.docker.com/r/m03geek/opencv-dlib/)\n\n# Versions (latest)\n\n* node - 10.3.0\n* dlib - 19.8\n* opencv - 3.4.1\n\n# Notes\n\nIf you want to use some native modules you'll need to install at least `python`.\n\nSo you can add following lines to your dockerfile.\n\n## Alpine \n\nFor alpine you will also need `libstdc++` for building native modules.\n\n```Dockerfile\nRUN apk add --virtual .build-deps python libstdc++ gcc g++\n```\n\nAlso you may need `libc6-compat` if your native modules will use glibc.\n\nAfter bould you may want ot delete build deps in order to reduce image size.\n\n```Dockerfile\nRUN apk del .build-deps\n```\n\n\u003e Remember: you'll need to delete them in one layer with adding them or use `--squash` to reduce actual size.\n\n## Stretch (debian)\n\n```Dockerfile\nRUN apt-get update \u0026\u0026 apt-get install -y --no-install-recommends python build-essential\n```\n\n# Node.js lib compatibility\n\n* [opencv4nodejs](https://www.npmjs.com/package/opencv4nodejs) - native module, see installing instructions above and follow module documentation.\n* [face-recognition](https://www.npmjs.com/package/face-recognition) - native module, see installing instructions above and follow module documentation.\n\n## Installing opencv4nodejs\n\n```Dockerfile\nFROM m03geek/opencv-dlib-node:alpine\nRUN apk update \u0026\u0026 apk add -u --no-cache python make g++\nRUN npm i opencv4nodejs\n```\n\n## Installing face-recognition\n\n```Dockerfile\nFROM m03geek/opencv-dlib-node:alpine\nRUN apk update \u0026\u0026 apk add -u python make g++ libpng-dev libjpeg-turbo-dev giflib-dev libx11-dev\nRUN npm init -y\nRUN npm i face-recognition\n```\n\n# Other images:\n\n## Without FFmpeg\n\n| OpenCV | Dlib | OpenCV+Dlib | OpenCV+Dlib+Node.js | OpenCV+Node.js | Dlib+Node.js |\n|-|-|-|-|-|-|\n| [Docker](https://hub.docker.com/r/m03geek/opencv/) | [Docker](https://hub.docker.com/r/m03geek/dlib/) | [Docker](https://hub.docker.com/r/m03geek/opencv-dlib/) | [Docker](https://hub.docker.com/r/m03geek/opencv-dlib-node/) | [Docker](https://hub.docker.com/r/m03geek/opencv-node/) | [Docker](https://hub.docker.com/r/m03geek/dlib-node/) |\n| [Github](https://github.com/SkeLLLa/docker-opencv) | [Github](https://github.com/SkeLLLa/docker-dlib) | [Github](https://github.com/SkeLLLa/docker-opencv-dlib) | [Github](https://github.com/SkeLLLa/docker-opencv-dlib-node) | [Github](https://github.com/SkeLLLa/docker-opencv-node) | [Github](https://github.com/SkeLLLa/docker-dlib-node) |\n\n## With FFmpeg\n\n| OpenCV | OpenCV+Dlib | OpenCV+Dlib+Node.js | OpenCV+Node.js |\n|-|-|-|-|\n| [Docker](https://hub.docker.com/r/m03geek/ffmpeg-opencv/) | [Docker](https://hub.docker.com/r/m03geek/ffmpeg-opencv-dlib/) | [Docker](https://hub.docker.com/r/m03geek/ffmpeg-opencv-dlib-node/) | [Docker](https://hub.docker.com/r/m03geek/ffmpeg-opencv-dlib-node/) |\n| [Github](https://github.com/SkeLLLa/docker-ffmpeg-opencv) | [Github](https://github.com/SkeLLLa/docker-ffmpeg-opencv) | [Github](https://github.com/SkeLLLa/docker-ffmpeg-opencv-dlib-node) | [Github](https://github.com/SkeLLLa/docker-ffmpeg-opencv-node) |","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskellla%2Fdocker-opencv-dlib-node","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskellla%2Fdocker-opencv-dlib-node","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskellla%2Fdocker-opencv-dlib-node/lists"}