soiz1's picture
Update Dockerfile
f9679cd verified
raw
history blame contribute delete
525 Bytes
# 軽量な Python イメージを使用
FROM python:3.10
# 必要なパッケージをインストール
RUN apt-get update && apt-get install -y build-essential && \
rm -rf /var/lib/apt/lists/*
# 環境変数を設定 (CUDA なし)
ENV USE_CUDA=0
# Python パッケージをインストール
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r /tmp/requirements.txt
# アプリをコピー
WORKDIR /app
COPY . .
CMD ["python", "app.py"]