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