rein0421 commited on
Commit
12b8b38
·
verified ·
1 Parent(s): 66c0dcd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -3
Dockerfile CHANGED
@@ -1,17 +1,20 @@
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
- # apt-getでPython3、pip、ffmpegをインストール
7
  RUN apt-get update && \
8
  apt-get install -y python3 python3-pip ffmpeg && \
9
  rm -rf /var/lib/apt/lists/*
10
 
 
 
 
11
  WORKDIR /app
12
  COPY requirements.txt .
13
 
14
- # pipの代わりにpython3 -m pipを使用してインストール
15
  RUN python3 -m pip install --no-cache-dir -r requirements.txt
16
 
17
  COPY . .
 
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
+ # Python3、pip、ffmpegをインストール
7
  RUN apt-get update && \
8
  apt-get install -y python3 python3-pip ffmpeg && \
9
  rm -rf /var/lib/apt/lists/*
10
 
11
+ # pipを最新版にアップグレード
12
+ RUN python3 -m pip install --upgrade pip
13
+
14
  WORKDIR /app
15
  COPY requirements.txt .
16
 
17
+ # requirements.txtのインストール
18
  RUN python3 -m pip install --no-cache-dir -r requirements.txt
19
 
20
  COPY . .