main2 / Dockerfile
qsyhh's picture
Update Dockerfile
b8aee51 verified
Raw
History Blame Contribute Delete
243 Bytes
FROM node:22-alpine
WORKDIR /app
COPY server.js ./
EXPOSE 7860
# 在 Space Settings 中设置 PUBLIC_HOST 为你的 Space 域名,例如:
# PUBLIC_HOST=qsyhh-main2.hf.space
ENV PUBLIC_HOST="qsyhh-main2.hf.space"
CMD ["node", "server.js"]