From 7404f3373f737b8997dc88c4aaba85c3616b5ded Mon Sep 17 00:00:00 2001 From: RoboMod Date: Thu, 8 Nov 2018 23:14:28 +0100 Subject: [PATCH] Fixed some bugs in Dockerfile Found bug in CloudronManifest accourding hyphens in urls --- CloudronManifest.json | 2 +- Dockerfile | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/CloudronManifest.json b/CloudronManifest.json index 521d0c2..37a011a 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -1,5 +1,5 @@ { - "id": "org.firefly-iii.coudronapp", + "id": "org.firefly.cloudronapp", "title": "Firefly III", "author": "Firefly developers", "description": "file://DESCRIPTION.md", diff --git a/Dockerfile b/Dockerfile index 69d5324..47b6c73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ LABEL version="1.0" maintainer="robomod@xeac.org" ## Prepare third parties # Install packages RUN apt-get update -y && \ - apt-get install -y --no-install-recommends libjpeg62-turbo-dev \ + apt-get install -y --no-install-recommends libjpeg-turbo8-dev \ libpng-dev \ libldap2-dev \ libedit-dev \ @@ -26,9 +26,6 @@ RUN apt-get update -y && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -# LDAP install -RUN docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ && docker-php-ext-install ldap - # Install latest curl RUN cd /tmp && \ wget https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz && \