FROM vcarreira/php7:latest

VOLUME /app
WORKDIR /app
RUN apt-get update && apt-get install -y vim

RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer

CMD ["/bin/bash"]
