Skip to content

Instantly share code, notes, and snippets.

@mateusfreira
Created March 27, 2016 22:22
Show Gist options
  • Save mateusfreira/82a4d6108fd596ece3f4 to your computer and use it in GitHub Desktop.
Save mateusfreira/82a4d6108fd596ece3f4 to your computer and use it in GitHub Desktop.
Dockerfile Jenkins + Node
FROM jenkins
# if we want to install via apt
USER root
RUN curl -sL https://deb.nodesource.com/setup_5.x | bash -
RUN apt-get install -y nodejs
EXPOSE 8080
EXPOSE 50000
EXPOSE 9090
EXPOSE 9091
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment