Shallie/Dockerfile
Damillora d65edf74ee
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix: update node version for deploy
2024-09-11 13:08:09 +07:00

15 lines
289 B
Docker

FROM node:18-alpine
# install dependencies
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
FROM node:16-alpine
WORKDIR /app
COPY --from=0 /app/build /app
COPY --from=0 /app/package.json /app
COPY --from=0 /app/node_modules /app/node_modules
EXPOSE 3000
CMD ["node","./index.js"]