ai-interview-system / Dockerfile
sugitora
HuggingFace Spaces デプロイ対応
8bab70f
raw
history blame contribute delete
429 Bytes
FROM python:3.12-slim
WORKDIR /app
# 依存パッケージ
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# アプリケーションコード
COPY . .
# HF Spaces は 7860 ポートを期待
EXPOSE 7860
# Streamlit起動
CMD ["streamlit", "run", "app.py", \
"--server.port=7860", \
"--server.address=0.0.0.0", \
"--server.headless=true", \
"--browser.gatherUsageStats=false"]