domino-server/Dockerfile

8 lines
148 B
Docker
Raw Permalink Normal View History

2024-07-17 00:14:14 +02:00
FROM node:22-alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm i
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["node", "dist/server/index.js"]