blackbirdchess-docker-dev/workspace/Dockerfile

65 lines
1.5 KiB
Docker
Raw Normal View History

FROM phusion/baseimage:latest
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
RUN DEBIAN_FRONTEND=noninteractive
RUN locale-gen en_US.UTF-8
2016-05-18 02:54:21 +02:00
ENV LANGUAGE=en_US.UTF-8
ENV LC_ALL=en_US.UTF-8
2016-05-18 03:38:46 +02:00
ENV LC_CTYPE=UTF-8
ENV LANG=en_US.UTF-8
2016-05-18 02:54:21 +02:00
ENV TERM xterm
# Install "software-properties-common" (for add-apt-repository) and add the "PHP 7" ppa
RUN apt-get update \
&& apt-get install -y software-properties-common \
&& add-apt-repository -y ppa:ondrej/php
# Install PHP-CLI 7 and some useful Tools
RUN apt-get update \
&& apt-get install -y \
php7.0-cli \
php7.0-common \
php7.0-curl \
php7.0-json \
php7.0-xml \
2016-05-18 02:54:21 +02:00
php7.0-mbstring \
php7.0-mcrypt \
php7.0-mysql \
php7.0-zip \
2016-05-18 02:54:21 +02:00
git \
curl \
vim \
nano \
nodejs \
nodejs-dev \
npm
2016-05-18 02:54:21 +02:00
# Install Composer
RUN curl -s http://getcomposer.org/installer | php \
&& mv composer.phar /usr/local/bin/ \
2016-05-18 07:40:08 +02:00
&& echo "alias composer='/usr/local/bin/composer.phar'" >> ~/.bashrc
2016-05-18 07:40:08 +02:00
# Install the Laravel Installer
RUN composer.phar global require "laravel/installer" \
2016-05-18 08:05:45 +02:00
&& echo "export PATH='~/.composer/vendor/bin:$PATH'" >> ~/.bashrc
2016-05-18 07:40:08 +02:00
# Install gulp and bower
RUN npm install -g gulp bower
# Add a symbolic link
RUN ln -s /usr/bin/nodejs /usr/bin/node
2016-05-18 09:25:54 +02:00
# Add an alias for PHPUnit
RUN echo "alias phpunit='./vendor/bin/phpunit'" >> ~/.bashrc
# Source the bash
2016-05-18 07:40:08 +02:00
RUN . ~/.bashrc
# Clean up
2016-05-18 06:53:14 +02:00
RUN apt-get autoclean && apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /var/www/laravel