Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removes git-lfs #3

Open
wants to merge 1 commit into
base: 7.1
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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 && \
Expand Down