Skip to content

Commit ed367eb

Browse files
committed
Merge branch 'release/0.9.1'
2 parents a68b468 + 0702482 commit ed367eb

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.9.1 (release date: 2015-10-07)
2+
3+
* Removed stale NTP entries
4+
* Updated `phusion/baseimage` to `0.9.17`
5+
* Added latest version of nodejs installation `v4.1.2`
6+
17
## 0.9.0 (release date: 2015-10-06)
28

39
* Initial release

Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM phusion/baseimage:0.9.16
1+
FROM phusion/baseimage:0.9.17
22

33
# Phusion setup
44
ENV HOME /root
@@ -9,10 +9,13 @@ CMD ["/sbin/my_init"]
99
# Nginx-PHP Installation
1010
RUN apt-get update -y && apt-get install -y vim curl wget build-essential python-software-properties git-core
1111
RUN apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 4F4EA0AAE5267A6C
12-
RUN add-apt-repository -y ppa:ondrej/php5-5.6 && add-apt-repository -y ppa:nginx/stable && add-apt-repository ppa:chris-lea/node.js
12+
RUN add-apt-repository -y ppa:ondrej/php5-5.6 && add-apt-repository -y ppa:nginx/stable
1313
RUN apt-get update -y && sudo apt-get upgrade -y && apt-get install -y php5 php5-cli php5-fpm php5-mysqlnd php5-curl \
14-
php5-gd php5-mcrypt php5-intl php5-imap php5-tidy php-pear php5-xmlrpc \
15-
nodejs
14+
php5-gd php5-mcrypt php5-intl php5-imap php5-tidy php-pear php5-xmlrpc
15+
16+
# Install latest version of nodejs
17+
RUN curl --silent --location https://deb.nodesource.com/setup_4.x | sudo bash -
18+
RUN apt-get install -y nodejs
1619

1720
# Install nginx (full)
1821
RUN apt-get install -y nginx-full

0 commit comments

Comments
 (0)