Download link fixed; missing dependency added.

This commit is contained in:
Matthias 2021-03-27 18:55:31 +01:00
parent 46fdb88795
commit 2ccb9710f3
2 changed files with 6 additions and 1 deletions

View File

@ -8,13 +8,17 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="hackerman"
RUN \
echo "**** install dependencies ****" && \
apt-get update && \
apt-get install -y --no-install-recommends \
libnss3 && \
echo "**** install digikam ****" && \
if [ -z ${DIGIKAM_VERSION} ]; then \
DIGIKAM_VERSION=$(curl -s "https://invent.kde.org/graphics/digikam/-/tags?format=atom" \
| grep -m 1 -P '<title>(v\d\.\d\.\d)</title>' | sed 's/\(^\s*<title>v\|<\/title>\s*$\)//g'); \
fi && \
curl -o /app/digikam -L \
https://download.kde.org/stable/digikam/${DIGIKAM_VERSION}/digikam-${DIGIKAM_VERSION}-x86-64.appimage && \
https://download.kde.org/stable/digikam/${DIGIKAM_VERSION}/digiKam-${DIGIKAM_VERSION}-x86-64.appimage && \
chmod +x /app/digikam && \
echo "**** cleanup ****" && \
apt-get clean && \

View File

@ -46,3 +46,4 @@ app_setup_block: |
# changelog
changelogs:
- { date: "20.05.20:", desc: "Initial release." }
- { date: "27.03.21:", desc: "Download link fixed." }