Spaces:
Sleeping
Sleeping
FROM nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04 | |
# タイムゾーンの設定など(必要に応じて) | |
RUN ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime | |
# システムパッケージの更新とffmpegのインストール | |
RUN apt-get update && apt-get install -y ffmpeg | |
# 残りのセットアップ(Pythonのインストール、requirements.txtのインストールなど) | |
WORKDIR /app | |
COPY requirements.txt . | |
RUN pip install --no-cache-dir -r requirements.txt | |
COPY . . | |
CMD ["python", "app.py"] | |