Created
May 23, 2016 02:31
-
-
Save cescoferraro/e582c06abfddcfeb6a9f227cbcadf829 to your computer and use it in GitHub Desktop.
dfsd
This file contains 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 ubuntu:14.04 | |
MAINTAINER Francesco Ferraro <[email protected]> | |
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