Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
NioTeX committed Feb 12, 2016
0 parents commit 37b7d7b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Pull base image.
FROM node:slim
MAINTAINER Nimrod Nagy <nimrod.nagy@lynxsolutions.eu>

# Install git
RUN apt-get update && apt-get install -y git php

# Global install gulp and bower
RUN npm install -g gulp grunt bower && \
echo '{ "allow_root": true }' > /root/.bowerrc

# Binary may be called nodejs instead of node
RUN ln -s /usr/bin/nodejs /usr/bin/node

# Define working directory.
WORKDIR /workspace
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# docker-npm-bower-gulp

0 comments on commit 37b7d7b

Please sign in to comment.