Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gallyga
/
file
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
file
/
Dockerfile
gallyga
Upload 3 files
8171da1
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
275 Bytes
# 使用官方 Node.js 镜像
FROM
node:
18
-alpine
# 设置工作目录
WORKDIR
/app
# 安装 @filen/webdav 包
RUN
npm install @filen/webdav@latest
# 复制当前目录下的代码到容器中
COPY
. .
# 暴露端口
EXPOSE
8080
# 运行代码
CMD
[
"node"
,
"start.mjs"
]