reformat the workspace Dockerfile
This commit is contained in:
		@@ -4,41 +4,33 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
RUN DEBIAN_FRONTEND=noninteractive
 | 
					RUN DEBIAN_FRONTEND=noninteractive
 | 
				
			||||||
RUN locale-gen en_US.UTF-8
 | 
					RUN locale-gen en_US.UTF-8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ENV LANGUAGE=en_US.UTF-8
 | 
					ENV LANGUAGE=en_US.UTF-8
 | 
				
			||||||
ENV LANG=en_US.UTF-8
 | 
					ENV LANG=en_US.UTF-8
 | 
				
			||||||
ENV LC_ALL=en_US.UTF-8
 | 
					ENV LC_ALL=en_US.UTF-8
 | 
				
			||||||
 | 
					ENV TERM xterm
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Install some essential libraries
 | 
					# Install "software-properties-common" (for add-apt-repository) and add the "PHP 7" ppa
 | 
				
			||||||
RUN apt-get update && apt-get install -y \
 | 
					RUN apt-get update \
 | 
				
			||||||
    software-properties-common \
 | 
					    && apt-get install -y software-properties-common \
 | 
				
			||||||
    python-software-properties \
 | 
					    && add-apt-repository -y ppa:ondrej/php
 | 
				
			||||||
    autoconf \
 | 
					 | 
				
			||||||
    file \
 | 
					 | 
				
			||||||
    g++ \
 | 
					 | 
				
			||||||
    gcc \
 | 
					 | 
				
			||||||
    libc-dev \
 | 
					 | 
				
			||||||
    make \
 | 
					 | 
				
			||||||
    pkg-config
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Install PHP-CLI 7
 | 
					# Install PHP-CLI 7 and some useful Tools
 | 
				
			||||||
RUN add-apt-repository -y ppa:ondrej/php
 | 
					RUN apt-get update \
 | 
				
			||||||
RUN apt-get update && apt-get install -y \
 | 
					    && apt-get install -y \
 | 
				
			||||||
        php7.0-cli \
 | 
					        php7.0-cli \
 | 
				
			||||||
        php7.0-common \
 | 
					        php7.0-common \
 | 
				
			||||||
        php7.0-curl \
 | 
					        php7.0-curl \
 | 
				
			||||||
        php7.0-json \
 | 
					        php7.0-json \
 | 
				
			||||||
        php7.0-mbstring \
 | 
					        php7.0-mbstring \
 | 
				
			||||||
        php7.0-mcrypt \
 | 
					        php7.0-mcrypt \
 | 
				
			||||||
    php7.0-mysql
 | 
					        php7.0-mysql \
 | 
				
			||||||
 | 
					 | 
				
			||||||
# Install some Tools
 | 
					 | 
				
			||||||
RUN apt-get install -y \
 | 
					 | 
				
			||||||
        git \
 | 
					        git \
 | 
				
			||||||
        curl \
 | 
					        curl \
 | 
				
			||||||
        vim \
 | 
					        vim \
 | 
				
			||||||
        nano
 | 
					        nano
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Setup the Composer installer
 | 
					# Install Composer
 | 
				
			||||||
RUN curl -s http://getcomposer.org/installer | php \
 | 
					RUN curl -s http://getcomposer.org/installer | php \
 | 
				
			||||||
    && mv composer.phar /usr/local/bin/ \
 | 
					    && mv composer.phar /usr/local/bin/ \
 | 
				
			||||||
    && alias composer='/usr/local/bin/composer.phar'
 | 
					    && alias composer='/usr/local/bin/composer.phar'
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user