7 lines
87 B
Docker
7 lines
87 B
Docker
FROM node:22
|
|
|
|
WORKDIR /app
|
|
|
|
# 安裝 backend deps
|
|
COPY package*.json ./
|
|
RUN npm install |