Skip to content

Instantly share code, notes, and snippets.

@cescoferraro
Created May 23, 2016 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cescoferraro/e582c06abfddcfeb6a9f227cbcadf829 to your computer and use it in GitHub Desktop.
Save cescoferraro/e582c06abfddcfeb6a9f227cbcadf829 to your computer and use it in GitHub Desktop.
dfsd
FROM ubuntu:14.04
MAINTAINER Francesco Ferraro <francescoaferraro@gmail.com>
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN DEBIAN_FRONTEND=noninteractive add-apt-repository ppa:masterminds/glide
RUN DEBIAN_FRONTEND=noninteractive add-apt-repository ppa:ubuntu-lxc/lxd-stable
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y git
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y glide
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y nodejs
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y golang
RUN npm install -g gulp
RUN npm install -g bower
ENV GOPATH /root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment