Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
clash-linux
/
api
like
2
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
552a548
api
/
Dockerfile
clash-linux
Upload 14 files
29cc386
verified
about 1 year ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
262 Bytes
FROM
node:lts-alpine
# 设置工作目录
WORKDIR
/app
# 复制package.json和package-lock.json
COPY
package*.json ./
# 安装依赖
RUN
npm install
# 复制源代码
COPY
. .
# 暴露端口
EXPOSE
3000
# 启动命令
CMD
[
"npm"
,
"start"
]