From 8876f16ea5c033341c53f0b34a32e24300c1071d Mon Sep 17 00:00:00 2001 From: Maki Date: Fri, 12 Jul 2024 16:19:03 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20[feat]=20Enhance=20Docker=20setu?= =?UTF-8?q?p=20for=20LivePortrait?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated the base image to NVIDIA CUDA 12.0.1 and installed essential system packages. - Upgraded pip and installed required Python libraries from requirements.txt. - Set the Asia/Tokyo timezone and specified the working directory to /LivePortrait. --- docker/Dockerfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index e8f9dc7..c00693f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,7 +4,7 @@ FROM nvidia/cuda:12.0.1-cudnn8-runtime-ubuntu22.04 WORKDIR /LivePortrait -# # 必要なシステムパッケージをインストールする +# Install necessary system packages RUN apt-get update && apt-get install -y \ git \ cmake \ @@ -14,23 +14,23 @@ RUN apt-get update && apt-get install -y \ libglib2.0-0 \ libx11-dev -# システムレベルで必要なパッケージをインストールします +# Install required system-level packages RUN apt-get update && apt-get install -y python3-pip python3-dev -# pip をアップグレードする +# Upgrade pip RUN pip install --upgrade pip -# 必要な Python パッケージをインストールする +# Install required Python packages COPY requirements.txt . RUN pip install -r requirements.txt -# タイムゾーンを設定する -# 例としてAsia/Tokyoを設定 +# Set the timezone +# Example: Set to Asia/Tokyo RUN ln -sf /usr/share/zoneinfo/Asia/Tokyo /etc/localtime -# タイムゾーンを設定 +# Set timezone ENV TZ Asia/Tokyo RUN apt-get install libopencv-dev -y -# 作業ディレクトリを設定する +# Set the working directory WORKDIR /LivePortrait