Skip to content

Commit

Permalink
ci: also skip npm audit during build
Browse files Browse the repository at this point in the history
  • Loading branch information
zone117x committed Sep 26, 2024
1 parent 90ef736 commit 32a1645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN echo "GIT_TAG=$(git tag --points-at HEAD)" >> .env
RUN npm ci && npm run build && npm run build:docs && npm prune --production
RUN npm ci --no-audit && npm run build && npm run build:docs && npm prune --production

CMD ["node", "./lib/index.js"]

0 comments on commit 32a1645

Please sign in to comment.