Include Vendor

This commit is contained in:
Mathieu Lagace
2018-06-27 20:31:54 -04:00
parent d0807a7cf5
commit 5fa3c85b97
6624 changed files with 728653 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
FROM php:5.6-cli
RUN apt-get update && \
apt-get install -y git zip unzip && \
apt-get -y autoremove && \
apt-get clean && \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /opt/mockery
COPY composer.json ./
RUN composer install