added bash and moved all dev packages to be with virtual alpine env that

is removed after python libraries installation
This commit is contained in:
Guy Addadi 2017-12-11 00:41:36 +02:00
parent 37af5992c7
commit 7d81de4edf

View File

@ -2,8 +2,10 @@ FROM alpine:latest
# Install dependencies
RUN apk --no-cache --update add \
python3 python3-dev gcc musl-dev gnupg zlib-dev jpeg-dev libmagic \
sudo tesseract-ocr imagemagick ghostscript unpaper
python3 gnupg libmagic bash \
sudo tesseract-ocr imagemagick ghostscript unpaper && \
apk --no-cache add --virtual .build-dependencies \
python3-dev gcc musl-dev zlib-dev jpeg-dev
## Install python dependencies
RUN python3 -m ensurepip && \
@ -46,4 +48,7 @@ RUN chmod 755 /sbin/docker-entrypoint.sh
VOLUME ["/usr/src/paperless/data", "/usr/src/paperless/media", "/consume", "/export"]
ENTRYPOINT ["/sbin/docker-entrypoint.sh"]
# Remove build dependencies
RUN apk del .build-dependencies
CMD ["--help"]