chore: bump versions and other minor things

This commit is contained in:
Herculino Trotta
2026-05-01 00:07:15 -03:00
parent 10eecd09ff
commit 9a30a0d3c0
5 changed files with 165 additions and 14 deletions

View File

@@ -2,9 +2,9 @@ FROM node:lts-alpine
WORKDIR /usr/src/frontend
COPY ./frontend/package.json .
COPY ./frontend/package.json ./frontend/package-lock.json ./
RUN npm install --verbose && npm cache clean --force
RUN npm ci --verbose && npm cache clean --force
ENV PATH ./node_modules/.bin/:$PATH