1 / Dockerfile
xrunx's picture
Upload 2 files
abf0c88 verified
Raw
History Blame Contribute Delete
221 Bytes
# 使用基础镜像
FROM xcq0607/nodejs_vless:latest
# 设置工作目录
WORKDIR /app
# 设置Hugging Face默认端口
ENV PORT=7860
# 暴露端口
EXPOSE 7860
# 使用原镜像的启动命令
CMD ["node", "app.js"]