miyataken999
Prepare FastAPI app for Hugging Face Spaces
1e13199
raw
history blame contribute delete
530 Bytes
FROM python:3.9-slim
WORKDIR /app
# システムの依存関係をインストール
RUN apt-get update && apt-get install -y \
gcc \
&& rm -rf /var/lib/apt/lists/*
# 要件をコピーしてインストール
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# アプリケーションファイルをコピー
COPY . .
# ポートを公開 (Hugging Face Spacesは7860を使用)
EXPOSE 7860
# 環境変数を設定
ENV PORT=7860
# アプリケーションを起動
CMD ["python", "app.py"]