This commit is contained in:
theshy
2025-07-31 17:29:00 +08:00
parent 3b52ecf74f
commit 3e5e383a95
2 changed files with 1 additions and 1 deletions

14
dockerfile Normal file
View File

@ -0,0 +1,14 @@
# record-app/Dockerfile
FROM node:20
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
# 端口可根据 next.config.js 设置
EXPOSE 3000
CMD ["npm", "run", "start"]