From 3a5368e1bd5b390e44bf01408cc3cff75ae9f88f Mon Sep 17 00:00:00 2001 From: "mathieu.brunot" Date: Thu, 14 Feb 2019 15:28:10 +0100 Subject: [PATCH] :whale: :green_heart: Fix copy of content --- backend/Dockerfile | 2 +- frontend/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index fcc2376b91..da37b31012 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -52,7 +52,7 @@ COPY ./scripts/lein /home/uxbox/.local/bin/lein RUN bash -c "/home/uxbox/.local/bin/lein version" # Copy backend source and build release -COPY ./* /home/uxbox/backend +COPY ./* /home/uxbox/backend/ RUN /home/uxbox/backend/scripts/dist diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 80d225534e..0cbd081789 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -54,7 +54,7 @@ RUN bash -c "/home/uxbox/.local/bin/lein version" ENV API_URL http://127.0.0.1:6060/api # Copy frontend source and build release -COPY ./* /home/uxbox/frontend +COPY ./* /home/uxbox/frontend/ RUN cd /home/uxbox/frontend; \ sed -i \ -e 's/"uxbox.config.url" ".*"/"uxbox.config.url" "${API_URL}/api"/g' \