fix: use npm install instead of npm ci (no lockfile)

This commit is contained in:
2026-05-14 13:50:45 +00:00
parent fc8b14934b
commit d2f985af28

View File

@@ -3,7 +3,7 @@ WORKDIR /app
ENV NODE_ENV=production ENV NODE_ENV=production
ENV PORT=4028 ENV PORT=4028
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm install
COPY . . COPY . .
RUN npm run build RUN npm run build
EXPOSE 4028 EXPOSE 4028