Merge pull request #13 from element-hq/dependabot/npm_and_yarn/npm_and_yarn-2c631a4876

Bump @babel/runtime from 7.26.0 to 7.26.10 in the npm_and_yarn group across 1 directory
This commit is contained in:
Michael Telatynski 2025-03-13 16:49:14 +00:00 committed by GitHub
commit f1372747db

View File

@ -8,7 +8,10 @@ RUN apk add --no-cache jq
WORKDIR /app
COPY package.json yarn.lock ./
COPY ./$BUILD_CONTEXT/package.json ./$BUILD_CONTEXT/
# Copy the package.json files of all modules & packages to ensure the frozen workspace lockfile holds up
RUN --mount=type=bind,target=/docker-context \
cd /docker-context/; \
find . -path ./node_modules -prune -o -name "package.json" -mindepth 0 -maxdepth 4 -exec cp --parents "{}" /app/ \;
RUN yarn install --frozen-lockfile --ignore-scripts
COPY tsconfig.json ./
COPY ./$BUILD_CONTEXT ./$BUILD_CONTEXT