ChoTensai_V3 / Dockerfile
TOMOCHIN4
v3: FastAPI + Gemini統合版デプロイ
994a408
raw
history blame contribute delete
306 Bytes
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"]