diff --git a/Dockerfile b/Dockerfile index 7a3da9e..db15bd0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,11 +5,10 @@ MAINTAINER Fusonic "office@fusonic.net" ARG DEBIAN_FRONTEND=noninteractive RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ - curl -sS https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \ echo "deb http://dl.yarnpkg.com/debian/ stable main">/etc/apt/sources.list.d/yarn.list && \ apt-get update && \ apt-get upgrade -y && \ - apt-get install -y git git-lfs curl bzip2 mysql-client \ + apt-get install -y git curl bzip2 mysql-client \ libxslt1.1 libmcrypt4 libcurl3 libenchant1c2a libgmp10 libc-client2007e libkrb5-3 \ libfbclient2 firebird2.5-common libldap-2.4-2 gcc make libxml2-dev libssl-dev libbz2-dev \ libmcrypt-dev libreadline6-dev libxslt1-dev libcurl4-openssl-dev libenchant-dev libpng12-dev \ @@ -22,7 +21,6 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ docker-php-ext-enable memcached && \ curl -L https://getcomposer.org/composer.phar > /usr/bin/composer && chmod +x /usr/bin/composer && \ curl -sL https://deb.nodesource.com/setup_6.x | bash - && \ - git lfs install && \ apt-get install nodejs yarn && \ curl https://www.npmjs.com/install.sh | sh && \ apt-get autoremove -y && \