This commit is contained in:
wangxiaoxian 2026-03-04 00:44:44 +08:00
parent 8edf0f1afe
commit 25ebc0b26e
1 changed files with 10 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
EXPOSE 8081
CMD ["node", "app.js"]