From 7c226fe2b73f650c6585e6fbf6eef6788a708e5a Mon Sep 17 00:00:00 2001 From: NodudeWasTaken <75137537+NodudeWasTaken@users.noreply.github.com> Date: Fri, 14 Jul 2023 05:05:33 +0200 Subject: [PATCH] Move make pre-ui to after Makefile move (#3908) --- docker/build/x86_64/Dockerfile | 2 +- docker/build/x86_64/Dockerfile-CUDA | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/build/x86_64/Dockerfile b/docker/build/x86_64/Dockerfile index d732890ec..554c6ff99 100644 --- a/docker/build/x86_64/Dockerfile +++ b/docker/build/x86_64/Dockerfile @@ -6,10 +6,10 @@ RUN apk add --no-cache make git ## cache node_modules separately COPY ./ui/v2.5/package.json ./ui/v2.5/yarn.lock /stash/ui/v2.5/ WORKDIR /stash -RUN make pre-ui COPY Makefile /stash/ COPY ./graphql /stash/graphql/ COPY ./ui /stash/ui/ +RUN make pre-ui RUN make generate-ui ARG GITHASH ARG STASH_VERSION diff --git a/docker/build/x86_64/Dockerfile-CUDA b/docker/build/x86_64/Dockerfile-CUDA index 68b05fb5b..63ecf3d75 100644 --- a/docker/build/x86_64/Dockerfile-CUDA +++ b/docker/build/x86_64/Dockerfile-CUDA @@ -6,10 +6,10 @@ RUN apk add --no-cache make git ## cache node_modules separately COPY ./ui/v2.5/package.json ./ui/v2.5/yarn.lock /stash/ui/v2.5/ WORKDIR /stash -RUN make pre-ui COPY Makefile /stash/ COPY ./graphql /stash/graphql/ COPY ./ui /stash/ui/ +RUN make pre-ui RUN make generate-ui ARG GITHASH ARG STASH_VERSION