feat(dockerfile): Use apt-fast

This commit is contained in:
TheOnlyWayUp
2024-12-22 11:18:36 +00:00
parent 8df2b6e84e
commit d2063f59be
+4 -1
View File
@@ -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"