Skip to content

Instantly share code, notes, and snippets.

@rasheedamir
Created July 31, 2016 16:02
Show Gist options
  • Save rasheedamir/36686d086121858ac9637f75266e95b8 to your computer and use it in GitHub Desktop.
Save rasheedamir/36686d086121858ac9637f75266e95b8 to your computer and use it in GitHub Desktop.
yeoman dockerfile based on Ubuntu 16.04 LTS
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