File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
7
## 0.9.0 (release date: 2015-10-06)
2
8
3
9
* Initial release
Original file line number Diff line number Diff line change 1
- FROM phusion/baseimage:0.9.16
1
+ FROM phusion/baseimage:0.9.17
2
2
3
3
# Phusion setup
4
4
ENV HOME /root
@@ -9,10 +9,13 @@ CMD ["/sbin/my_init"]
9
9
# Nginx-PHP Installation
10
10
RUN apt-get update -y && apt-get install -y vim curl wget build-essential python-software-properties git-core
11
11
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
13
13
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
16
19
17
20
# Install nginx (full)
18
21
RUN apt-get install -y nginx-full
You can’t perform that action at this time.
0 commit comments