falai / Dockerfile
rr1's picture
Update Dockerfile
1296812 verified
raw
history blame contribute delete
339 Bytes
# 使用Node.js作为基础镜像
FROM node:18
# 设置工作目录
WORKDIR /app
# 克隆仓库
RUN git clone https://github.com/14790897/simple-flux-web-api-ui.git .
# 安装依赖
RUN npm install
RUN npm run build
# 暴露默认端口(假设应用运行在3000端口)
EXPOSE 3000
# 设置容器启动命令
CMD ["npm", "start"]