Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
43 lines
1.6 KiB
Docker
43 lines
1.6 KiB
Docker
#####
|
|
# This is a working example of setting up tesseract/gosseract,
|
|
# and also works as an example runtime to use gosseract package.
|
|
# You can just hit `docker run -it --rm otiai10/gosseract`
|
|
# to try and check it out!
|
|
#####
|
|
FROM golang:latest
|
|
LABEL maintainer="Hiromu Ochiai <otiai10@gmail.com>"
|
|
|
|
RUN apt-get update -qq
|
|
|
|
# You need librariy files and headers of tesseract and leptonica.
|
|
# When you miss these or LD_LIBRARY_PATH is not set to them,
|
|
# you would face an error: "tesseract/baseapi.h: No such file or directory"
|
|
RUN apt-get install -y -qq libtesseract-dev libleptonica-dev
|
|
|
|
# In case you face TESSDATA_PREFIX error, you minght need to set env vars
|
|
# to specify the directory where "tessdata" is located.
|
|
ENV TESSDATA_PREFIX=/usr/share/tesseract-ocr/5/tessdata/
|
|
|
|
# Load languages.
|
|
# These {lang}.traineddata would b located under ${TESSDATA_PREFIX}/tessdata.
|
|
RUN apt-get install -y -qq \
|
|
tesseract-ocr-eng \
|
|
tesseract-ocr-deu \
|
|
tesseract-ocr-jpn
|
|
# See https://github.com/tesseract-ocr/tessdata for the list of available languages.
|
|
# If you want to download these traineddata via `wget`, don't forget to locate
|
|
# downloaded traineddata under ${TESSDATA_PREFIX}/tessdata.
|
|
|
|
# Setup your cool project with go.mod.
|
|
WORKDIR ${GOPATH}/src/github.com/ghost/cool-project
|
|
RUN go mod init
|
|
|
|
# Let's have gosseract in your project and test it.
|
|
RUN go get -t github.com/otiai10/gosseract/v2
|
|
|
|
# Now, you've got complete environment to play with "gosseract"!
|
|
# For other OS, check https://github.com/otiai10/gosseract/tree/main/test/runtimes
|
|
|
|
# Try `docker run -it --rm otiai10/gosseract` to test this environment.
|
|
CMD go test -v github.com/otiai10/gosseract/v2
|