From c462b0630a42f17415bc78eacd16bd312f0490f4 Mon Sep 17 00:00:00 2001 From: Antonin Stefanutti Date: Sun, 22 Nov 2015 19:02:45 +0100 Subject: [PATCH] Individual COPYs as Docker Hub does not take .dockerignore into account --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index af50daa..90b4733 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,10 +10,14 @@ RUN apt-get install -y \ libssl1.0.0 \ libicu52 -COPY . /decktape - WORKDIR /decktape +# Copy each directory individually as Docker Hub does not take .dockerignore into account for the moment +# COPY . . +COPY libs libs/ +COPY plugins plugins/ +COPY decktape.js . + RUN mkdir bin RUN curl \