From d2063f59be15005f0d75a43d4f8239d0e6b30b36 Mon Sep 17 00:00:00 2001 From: TheOnlyWayUp Date: Sun, 22 Dec 2024 11:18:36 +0000 Subject: [PATCH] feat(dockerfile): Use apt-fast --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3dfaea4..1c2b712 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,12 @@ FROM python:3.10-slim WORKDIR /app # Install git, exiftool + +RUN add-apt-repository ppa:apt-fast/stable +RUN apt install -y apt-fast RUN apt update -RUN apt install -y git build-essential xorg libssl-dev libxrender-dev libpango-1.0-0 wget +RUN apt-fast install -y git build-essential xorg libssl-dev libxrender-dev libpango-1.0-0 wget ENV EXIFTOOL_VERSION="13.06" RUN wget "https://exiftool.org/Image-ExifTool-${EXIFTOOL_VERSION}.tar.gz"