diff --git a/docker/red-ui/Dockerfile b/docker/red-ui/Dockerfile index 905bf5dd1..d8e392dd3 100644 --- a/docker/red-ui/Dockerfile +++ b/docker/red-ui/Dockerfile @@ -1,5 +1,8 @@ FROM node:18.12-buster as prep +RUN ls -al +RUN cat version.json + RUN apt-get update && apt-get install -y jq COPY package.json /tmp @@ -25,6 +28,8 @@ COPY apps apps COPY libs libs COPY tools tools COPY package.json package.json +RUN jq --arg version "$(jq .FRONTEND_APP_VERSION version.json -r | cat)" '.version = $version' package.json +RUN cat package.json COPY yarn.lock yarn.lock COPY nx.json nx.json COPY .eslintrc.json .eslintrc.json