node-php-server

My little nodePHP docker server
git clone git://archive.git.mtrnord.blog/MTRNord/node-php-server.git
Log | Files | Refs

commit a86671c174e11c423abebe79490361284c69d942
parent dbc75ff13133d9e5a6fa9b9ec3117fe7ac2a9155
Author: Marcel <MTRNord@users.noreply.github.com>
Date:   Tue,  8 Mar 2016 17:44:19 +0100

Update Ubuntu and add Python
Diffstat:
MDockerfile | 11+++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile @@ -2,7 +2,7 @@ # # VERSION 0.1 -FROM ubuntu:12.04 +FROM ubuntu:15.10 MAINTAINER Marcel Radzio <info@nordgedanken.de> RUN echo "deb http://archive.ubuntu.com/ubuntu precise universe" >> /etc/apt/sources.list @@ -12,7 +12,14 @@ RUN apt-get -qq update RUN apt-get install -y bsdmainutils curl screen RUN curl -sL https://deb.nodesource.com/setup_5.x | bash - RUN apt-get update -RUN apt-get install -y nodejs build-essential php5 libavahi-compat-libdnssd-dev +RUN apt-get install -y nodejs build-essential checkinstall php5 libavahi-compat-libdnssd-dev +RUN apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev + +RUN wget http://python.org/ftp/python/2.7.11/Python-2.7.11.tgz +RUN tar -xvf Python-2.7.11.tgz +RUN cd Python-2.7.11 +RUN ./configure && make && make install && checkinstall +RUN cd .. RUN npm install -g strongloop