fix: Issue building image with dependency name ending in .vue (no-changelog) (#4773)

🐛 Fix issue building image
This commit is contained in:
Ricardo Espinoza 2022-11-30 21:12:34 -05:00 committed by GitHub
parent 8698e02079
commit 00bed61b39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@ RUN pnpm install --frozen-lockfile
RUN pnpm build RUN pnpm build
RUN rm -rf node_modules RUN rm -rf node_modules
RUN NODE_ENV=production pnpm install --prod --no-optional RUN NODE_ENV=production pnpm install --prod --no-optional
RUN find . -type f -name "*.ts" -o -name "*.js.map" -o -name "*.vue" -o -name "tsconfig.json" -o -name "*.tsbuildinfo" | xargs rm RUN find . -type f -name "*.ts" -o -name "*.js.map" -o -name "*.vue" -o -name "tsconfig.json" -o -name "*.tsbuildinfo" | xargs rm -rf
RUN rm -rf patches .npmrc *.yaml node_modules/.cache packages/**/node_modules/.cache packages/**/.turbo .config .cache .local .node /tmp/* RUN rm -rf patches .npmrc *.yaml node_modules/.cache packages/**/node_modules/.cache packages/**/.turbo .config .cache .local .node /tmp/*