Spaces:
Sleeping
Sleeping
| FROM python:3.11-slim | |
| WORKDIR /app | |
| # 依存パッケージインストール | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # アプリケーションコードをコピー | |
| COPY . . | |
| # ポート公開 | |
| EXPOSE 7860 | |
| # 起動コマンド | |
| CMD ["python", "app.py"] | |