blackbirdchess-docker-dev/workspace/Dockerfile
2016-05-18 07:11:49 +03:00

45 lines
1020 B
Docker

FROM phusion/baseimage:latest
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
RUN DEBIAN_FRONTEND=noninteractive
RUN locale-gen en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8
ENV LC_ALL=en_US.UTF-8
ENV LC_CTYPE=UTF-8
ENV LANG=en_US.UTF-8
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-mbstring \
php7.0-mcrypt \
php7.0-mysql \
git \
curl \
vim \
nano
# Install Composer
RUN curl -s http://getcomposer.org/installer | php \
&& mv composer.phar /usr/local/bin/ \
&& alias composer='/usr/local/bin/composer.phar'
# Clean up
RUN apt-get clean \
&& rm -r /var/lib/apt/lists/*
WORKDIR /var/www/laravel