Skip to content

Instantly share code, notes, and snippets.

@xdream86
Created August 8, 2016 15:29
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 xdream86/488ea36f008c7c84270db16c5a520bc9 to your computer and use it in GitHub Desktop.
Save xdream86/488ea36f008c7c84270db16c5a520bc9 to your computer and use it in GitHub Desktop.
xdream86/jenkins-node-docker-image
File Edit Options Buffers Tools Help
FROM jenkins:2.7.1
USER root
RUN apt-get update \
&& curl -sL https://deb.nodesource.com/setup_4.x | bash \
&& apt-get install -y nodejs \
&& wget -qO- https://get.docker.com/ | sh \
&& apt-get install -y emacs
RUN npm install -g mocha
USER jenkins
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment