Skip to content

Commit

Permalink
Prevent audit on npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
BaldissaraMatheus committed Oct 16, 2024
1 parent e92a326 commit ace2168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ COPY frontend/ /app

WORKDIR /app
RUN set -eux \
&& npm ci \
&& npm ci --no-audit \
&& npm run build

COPY backend/ /api/

WORKDIR /api
RUN set -eux \
&& npm ci
&& npm ci --no-audit

FROM alpine:3.20 AS final
ARG PUID=0
Expand Down

0 comments on commit ace2168

Please sign in to comment.