RED-6686 version fix

This commit is contained in:
Timo Bejan 2023-06-27 01:40:03 +03:00
parent f5f5386339
commit bc291c5db0

View File

@ -1,6 +1,8 @@
FROM node:18.12-buster as prep
RUN apt-get update && apt-get install -y jq
COPY version.json version.json
RUN cat version.json
COPY package.json /tmp
RUN jq '{ dependencies, devDependencies, peerDependencies, scripts: (.scripts | { postinstall }) }' < /tmp/package.json > /tmp/deps.json