fix dockerfile

This commit is contained in:
Иван 2025-10-22 22:36:31 +03:00
parent abb539edcb
commit c612badd68
1 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@ WORKDIR /app
RUN apk add --no-cache libc6-compat
COPY package-lock.json ./
COPY package.json ./
RUN npm ci
COPY . .
@ -16,7 +17,8 @@ ENV NODE_ENV=production
COPY --from=builder /app/.next ./.next
COPY --from=builder /app/public ./public
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/package-lock.json ./
COPY --from=builder /app/package.json ./
EXPOSE 3000
CMD ["npm", "run", "start"]