From cc3f8a3aa4defaec5893f8cdaa957c830c8bab4b Mon Sep 17 00:00:00 2001 From: viktorstrate Date: Tue, 2 Mar 2021 16:21:47 +0100 Subject: [PATCH] In Dockerfile, use official PPA for Darktable to get the latest version This solves #205 --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 56981a92..323637fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,6 +70,10 @@ WORKDIR /app COPY api/data /app/data +# Use official PPA for Darktable to get the latest version +RUN echo 'deb http://download.opensuse.org/repositories/graphics:/darktable/Debian_10/ /' | tee /etc/apt/sources.list.d/graphics:darktable.list \ + curl -fsSL https://download.opensuse.org/repositories/graphics:darktable/Debian_10/Release.key | gpg --dearmor | tee /etc/apt/trusted.gpg.d/graphics_darktable.gpg > /dev/null + RUN apt-get update \ # Required dependencies && apt-get install -y libdlib19 ffmpeg \