Intro_sound_trimmer/web/Dockerfile

17 lines
423 B
Docker
Raw Normal View History

2024-08-03 11:29:08 +00:00
# ベースイメージ
FROM python:3.9-slim
# 作業ディレクトリの設定
WORKDIR /app
# 必要なパッケージのインストール
RUN apt-get update && apt-get install -y ffmpeg
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# アプリケーションファイルのコピー
COPY . .
# コンテナ起動時に実行されるコマンド
CMD ["python", "app.py"]