Remove c from ci due to lock file issues

This commit is contained in:
Christbru 2025-10-19 09:43:37 -05:00
commit e479439bb4

View file

@ -2,7 +2,7 @@ FROM node:23-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm i
COPY . .
RUN npm run format && npm run build
EXPOSE 3000