From 7231af472dfd5af5b722ae8d5c9f0f6ffe546b06 Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Wed, 25 Sep 2019 12:19:45 +0200 Subject: [PATCH] Build optimization --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3408dc7..c295003 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,10 @@ RUN \ ARG flavour= WORKDIR /app/ -COPY . /app/ +COPY ./setup.py /app/ +COPY ./setup.cfg /app/ RUN pip3 install -e .$flavour +COPY ./funkwhale_network /app/ EXPOSE 8000 -- GitLab