From 88086e2460696383e0c53aa1a7c45dd48607e071 Mon Sep 17 00:00:00 2001 From: Mauro Torrez Date: Sun, 28 Apr 2019 02:00:49 -0300 Subject: [PATCH] arreglando build --- files/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/files/Dockerfile b/files/Dockerfile index 565aca5..7ffb35f 100644 --- a/files/Dockerfile +++ b/files/Dockerfile @@ -5,7 +5,8 @@ VOLUME /srv/app/data VOLUME /srv/app/plugins ENV BUILD_DEPS \ - libssl-dev + libssl-dev \ + libcurl4-openssl-dev # Install application dependencies RUN curl --silent --show-error --fail --location \ @@ -15,14 +16,14 @@ RUN curl --silent --show-error --fail --location \ && chmod 0755 /usr/bin/caddy \ && /usr/bin/caddy -version \ && apt-get update \ - && apt-get install -y $BUILD_DEPS --no-install-recommends \ + && apt-get install -y $BUILD_DEPS curl --no-install-recommends \ && rm -r /var/lib/apt/lists/* \ && docker-php-ext-install phar curl json zlib xml dom ctype opcache zip iconv \ pdo pdo_mysql pdo_sqlite pdo_pgsql mbstring session bcmath \ gd mcrypt openssl sockets posix ldap simplexml \ && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; -ADD src/kanboard/* /srv/app/ +ADD src/kanboard /srv/app ADD docker/Caddyfile /etc/Caddyfile WORKDIR /srv/app/