Skip to content

OpenCV Alpine Docker Image for Java Applications

License

Notifications You must be signed in to change notification settings

iquote/java-opencv-alpine

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

OpenCV Alpine Docker Image for Java Applications

Run docker pull dilhelh/java-opencv-alpine:alpine_edge

Example usage

services:
  tesseract_api:
    image: dilhelh/java-opencv-alpine:alpine_edge
    container_name: tesseract_api
    volumes:
    - type: bind
      source: ./tessdata/ #Tesseract data folder (Relative or absolute file path)
      target: /usr/share/tessdata
    - type: bind
      source: ./target/tesseract-api-0.0.1-SNAPSHOT.jar #Java app that consumes Opencv native libraries
      target: /opt/tesseract-api-0.0.1-SNAPSHOT.jar
    ports:
      - 8080:8080
    command: "java -jar ./tesseract-api-0.0.1-SNAPSHOT.jar" #Command to execute the app

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%