optimize(dockerfile): 将"copy . ."移至系统设置之后 (#1937)

将Dockerfile中的"copy . ."指令移至系统设置之后的副作用是构建过程现在将在复制文件之前缓存层。
这意味着如果系统设置保持不变,后续构建将更快,因为将重用缓存的层。

optimize(dockerfile): Moved "copy . ." after system setup

The side effect of moving the "copy . ." instruction after the system setup in the Dockerfile is that the build process will now cache the layers before copying the files.
This means that if the system setup remains unchanged, subsequent builds will be faster as the cached layers will be reused.
This commit is contained in:
Andrei Iashchak 2024-04-11 09:53:19 +02:00 committed by GitHub
parent 9680bc71a1
commit d6db9dc99f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 3 deletions

View File

@ -6,15 +6,12 @@ EXPOSE 7865
WORKDIR /app
COPY . .
# Install dependenceis to add PPAs
RUN apt-get update && \
apt-get install -y -qq ffmpeg aria2 && apt clean && \
apt-get install -y software-properties-common && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Add the deadsnakes PPA to get Python 3.9
RUN add-apt-repository ppa:deadsnakes/ppa
@ -28,6 +25,8 @@ RUN apt-get update && \
# Set Python 3.9 as the default
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1
COPY . .
RUN python3 -m pip install --no-cache-dir -r requirements.txt
RUN aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/D40k.pth -d assets/pretrained_v2/ -o D40k.pth