Files
AFF-INVMF/Dockerfile
2025-04-09 02:01:23 +05:30

17 lines
168 B
Docker

FROM node:21-alpine
WORKDIR /usr/src/app
EXPOSE 3000
COPY package*.json ./
RUN npm install --force
COPY . .
RUN npm run build
RUN ls
CMD ["npm", "run", "start"]