Compare commits

..

No commits in common. "09bbb2e2a4101467d79ba2815c4dd2c2fcaa9dbd" and "d9f87eb26d93868d1208a67738dd719919b669d5" have entirely different histories.

View file

@ -4,7 +4,7 @@ WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json ./
COPY package-lock.json ./
RUN npm ci --silent --force
RUN npm ci --silent
RUN npm audit fix
COPY . ./
RUN npm run build