diff --git a/backend/Dockerfile b/backend/Dockerfile index 46503e9f2..4cc2ab6ab 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -66,7 +66,7 @@ ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH # Copy backend source and build release COPY ./* /home/uxbox/backend/ RUN set -ex; \ - ls -l; \ + ls -l backend; \ bash -c "/home/uxbox/backend/scripts/dist" @@ -89,6 +89,7 @@ RUN set -ex; \ mkdir -p /srv/uxbox/resources/public/media; \ mkdir -p /srv/uxbox/resources/public/static; + ENV \ # Locale setup LANG=en_US.UTF-8 LC_ALL=C.UTF-8 \ diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 6d7d6c7ca..26daeebc5 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -68,7 +68,7 @@ ENV API_URL http://127.0.0.1:6060/api # Copy frontend source and build release COPY ./* /home/uxbox/frontend/ RUN set -ex; \ - ls - l; \ + ls -l frontend; \ cd frontend; \ sed -i \ -e 's/"uxbox.config.url" ".*"/"uxbox.config.url" "${API_URL}/api"/g' \