filen / Dockerfile
gallygc's picture
Update Dockerfile
85702e1 verified
raw
history blame contribute delete
336 Bytes
# 使用官方 Node.js 20 镜像(满足 >= 20 的要求)
FROM node:20-alpine
# 设置工作目录
WORKDIR /app
# 安装 @filen/webdav 包
RUN npm install @filen/webdav@latest
# 复制当前目录下的代码到容器中
COPY . .
# Hugging Face 推荐默认使用 7860 端口
EXPOSE 7860
# 运行代码
CMD ["node", "start.mjs"]