fix: dockerfile
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Damillora 2024-09-14 22:39:05 +07:00
parent d65edf74ee
commit c68d6c019b

View File

@ -4,7 +4,7 @@ WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
FROM node:16-alpine
FROM node:18-alpine
WORKDIR /app
COPY --from=0 /app/build /app
COPY --from=0 /app/package.json /app