Files
arjion2/Dockerfile
2021-12-21 01:46:14 +01:00

9 líneas
347 B
Docker

FROM openjdk:11-jdk-bullseye
ENV JAVA_TOOL_OPTIONS -Dfile.encoding=UTF8
RUN apt update && apt -y upgrade && apt -y install tesseract-ocr tesseract-ocr-spa && apt clean
RUN addgroup --system --gid 1000 user
RUN adduser --system --uid 1000 --group user
RUN mkdir -p /upload /arjion2
RUN chown user.user -R /upload /arjion2
USER user
WORKDIR /arjion2