Created
July 31, 2016 16:02
-
-
Save rasheedamir/36686d086121858ac9637f75266e95b8 to your computer and use it in GitHub Desktop.
yeoman dockerfile based on Ubuntu 16.04 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM phusion/baseimage:0.9.19 | |
MAINTAINER Rasheed Amir <[email protected]> | |
RUN echo "deb http://archive.ubuntu.com/ubuntu xenial main universe" > /etc/apt/sources.list | |
RUN apt-get -y update | |
RUN apt-get -y install sudo nano git sudo zip bzip2 fontconfig wget | |
# install NodeJs | |
RUN curl -sL https://deb.nodesource.com/setup_4.x | sudo bash - | |
RUN apt-get update | |
RUN apt-get -y install nodejs | |
# install yeoman | |
RUN npm -g install npm | |
RUN npm install -g yo | |
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment