Skip to content

Commit

Permalink
fixup docker dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
joecorall committed Apr 26, 2024
1 parent 087d7e5 commit 8039761
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion docker-images/curl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ ARG DOCKER_REPOSITORY=local
FROM ${DOCKER_REPOSITORY}/scyllaridae:${TAG}

RUN apk update && \
apk add curl
apk add --no-cache curl

COPY scyllaridae.yml /app/scyllaridae.yml
2 changes: 1 addition & 1 deletion docker-images/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ ARG DOCKER_REPOSITORY=local
FROM ${DOCKER_REPOSITORY}/scyllaridae:${TAG}

RUN apk update && \
apk add ffmpeg
apk add --no-cache ffmpeg

COPY scyllaridae.yml /app/scyllaridae.yml
2 changes: 1 addition & 1 deletion docker-images/fits/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ ARG DOCKER_REPOSITORY=local
FROM ${DOCKER_REPOSITORY}/scyllaridae:${TAG}

RUN apk update && \
apk add curl
apk add --no-cache curl

COPY scyllaridae.yml /app/scyllaridae.yml
2 changes: 1 addition & 1 deletion docker-images/imagemagick/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ ARG DOCKER_REPOSITORY=local
FROM ${DOCKER_REPOSITORY}/scyllaridae:${TAG}

RUN apk update && \
apk add imagemagick
apk add --no-cache imagemagick

COPY scyllaridae.yml /app/scyllaridae.yml
20 changes: 10 additions & 10 deletions docker-images/tesseract/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ ARG DOCKER_REPOSITORY=local
FROM ${DOCKER_REPOSITORY}/scyllaridae:${TAG}

RUN apk update && \
apk add leptonica-progs \
apk add --no-cache leptonica-dev \
tesseract-ocr \
tesseract-ocr-eng \
tesseract-ocr-fra \
tesseract-ocr-spa \
tesseract-ocr-ita \
tesseract-ocr-por \
tesseract-ocr-hin \
tesseract-ocr-deu \
tesseract-ocr-jpn \
tesseract-ocr-rus \
tesseract-ocr-data-eng \
tesseract-ocr-data-fra \
tesseract-ocr-data-spa \
tesseract-ocr-data-ita \
tesseract-ocr-data-por \
tesseract-ocr-data-hin \
tesseract-ocr-data-deu \
tesseract-ocr-data-jpn \
tesseract-ocr-data-rus \
poppler-utils

COPY scyllaridae.yml /app/scyllaridae.yml

0 comments on commit 8039761

Please sign in to comment.