From ef6430a5cfd5c664f15bac779f0e0c85fee99170 Mon Sep 17 00:00:00 2001 From: TheOnlyWayUp Date: Sun, 22 Dec 2024 12:16:43 +0000 Subject: [PATCH] fix(dockerfile): Pull apt-fast from existing image --- Dockerfile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff51798..7a73864 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,14 +13,12 @@ FROM python:3.10-slim WORKDIR /app -# Install git, exiftool +# Install apt-fast, git, exiftool + +COPY --from=nobodyxu/apt-fast:latest-debian-buster-slim /usr/local/ /usr/local/ RUN apt update -RUN apt install -y software-properties-common -RUN add-apt-repository ppa:apt-fast/stable -RUN apt install -y apt-fast -RUN apt update - +RUN apt install -y aria2 RUN apt-fast install -y git build-essential xorg libssl-dev libxrender-dev libpango-1.0-0 wget ENV EXIFTOOL_VERSION="13.06"