1
0
mirror of https://github.com/Damillora/Rinze.git synced 2025-04-01 06:54:15 +00:00
2024-11-22 02:37:14 +07:00

15 lines
289 B
Docker

FROM node:20-alpine
# install dependencies
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
FROM node:20-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"]