station / Dockerfile
chuongior's picture
Update Dockerfile
6d99c36 verified
Raw
History Blame Contribute Delete
607 Bytes
# =============================================
# 9router v0.4.50 (latest) – Official Docker Image
# Theo README chính thức → fix triệt để Exiting... + Internal Server Error
# =============================================
FROM ghcr.io/decolua/9router:latest
# Cấu hình HF Spaces (bắt buộc)
ENV PORT=7860 \
HOSTNAME=0.0.0.0 \
DATA_DIR=/app/data \
INITIAL_PASSWORD=123456 \
NODE_ENV=production
# Volume persist đúng theo README (HF Spaces tự mount persistent storage vào đây)
VOLUME /app/data
EXPOSE 7860
# CMD đúng theo official image
CMD ["node", "server.js"]