From f31d535da83b36bcfe075dc3f04c62f321d8cb7e Mon Sep 17 00:00:00 2001 From: Enno Lohmeier Date: Thu, 5 Jul 2018 12:56:37 +0200 Subject: [PATCH] optimize Dockerfile for caching --- Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7295bc5c0..f02bf3336 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,11 +4,8 @@ LABEL maintainer="The Paperless Project https://github.com/danielquinn/paperless contributors="Guy Addadi , Pit Kleyersburg , \ Sven Fischer " -# Copy application +# Copy requirements file and init script COPY requirements.txt /usr/src/paperless/ -COPY src/ /usr/src/paperless/src/ -COPY data/ /usr/src/paperless/data/ -COPY media/ /usr/src/paperless/media/ COPY scripts/docker-entrypoint.sh /sbin/docker-entrypoint.sh # Set export and consumption directories @@ -44,3 +41,8 @@ VOLUME ["/usr/src/paperless/data", "/usr/src/paperless/media", "/consume", "/exp ENTRYPOINT ["/sbin/docker-entrypoint.sh"] CMD ["--help"] +# Copy application +COPY src/ /usr/src/paperless/src/ +COPY data/ /usr/src/paperless/data/ +COPY media/ /usr/src/paperless/media/ +