Skip to content

Commit 3f1fee1

Browse files
committed
add the Dockerfile
1 parent ffff71b commit 3f1fee1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM ubuntu
2+
3+
MAINTAINER mike@mikangali.com
4+
5+
# Install dev tools
6+
RUN apt-get update && \
7+
apt-get install -y nodejs npm git git-core \
8+
python python-dev python-pip python-virtualenv
9+
10+
# Install npm package
11+
RUN npm install -g bower express gulp grunt-cli yo generator-meanjs strongloop
12+
13+
EXPOSE 3000 4000 5000 8000 8080 9000 35729
14+
15+
CMD /bin/bash

0 commit comments

Comments
 (0)