chore: initial commit

This commit is contained in:
albertfj114
2026-03-29 22:02:22 -04:00
commit b2935ae932
54 changed files with 25031 additions and 0 deletions

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
# 使用官方 Node.js 镜像作为基础镜像
FROM node:20
# 创建并设置工作目录
WORKDIR /app
# 复制 package.json 和 package-lock.json如果有的话
COPY package*.json ./
# 安装依赖
RUN npm install
# 复制项目的所有文件到工作目录
COPY . .
# 构建 Next.js 应用
RUN npm run build
# 运行 Next.js 应用
CMD ["npm", "start"]
# 暴露应用运行的端口
EXPOSE 3001