Individual COPYs as Docker Hub does not take .dockerignore into account

This commit is contained in:
Antonin Stefanutti 2015-11-22 19:02:45 +01:00
parent bbc7111b95
commit c462b0630a

View File

@ -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 \