CMVR-AIMA/Dockerfile
2026-06-18 14:49:21 +08:00

11 lines
78 B
Docker

FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .