rein0421 commited on
Commit
a8bae83
·
verified ·
1 Parent(s): bf8480f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -10
Dockerfile CHANGED
@@ -1,17 +1,15 @@
1
- # Dockerfile
2
- FROM python:3.9-slim
3
 
4
- WORKDIR /app
 
 
 
 
5
 
6
- # 依存関係のインストール
 
7
  COPY requirements.txt .
8
  RUN pip install --no-cache-dir -r requirements.txt
9
-
10
- # アプリの全ファイルをコピー
11
  COPY . .
12
- RUN touch weak_phrases.json && chmod 666 weak_phrases.json
13
-
14
- # Hugging Face Spaces ではポート 7860 を使用する
15
- EXPOSE 7860
16
 
17
  CMD ["python", "app.py"]
 
1
+ FROM nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04
 
2
 
3
+ # タイムゾーンの設定など(必要に応じて)
4
+ RUN ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
5
+
6
+ # システムパッケージの更新とffmpegのインストール
7
+ RUN apt-get update && apt-get install -y ffmpeg
8
 
9
+ # 残りのセットアップ(Pythonのインストール、requirements.txtのインストールなど)
10
+ WORKDIR /app
11
  COPY requirements.txt .
12
  RUN pip install --no-cache-dir -r requirements.txt
 
 
13
  COPY . .
 
 
 
 
14
 
15
  CMD ["python", "app.py"]