1
Fork 0

In Dockerfile, use official PPA for Darktable to get the latest version

This solves #205
This commit is contained in:
viktorstrate 2021-03-02 16:21:47 +01:00
parent 430869b319
commit cc3f8a3aa4
No known key found for this signature in database
GPG Key ID: 3F855605109C1E8A
1 changed files with 4 additions and 0 deletions

View File

@ -70,6 +70,10 @@ WORKDIR /app
COPY api/data /app/data 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 \ RUN apt-get update \
# Required dependencies # Required dependencies
&& apt-get install -y libdlib19 ffmpeg \ && apt-get install -y libdlib19 ffmpeg \