Created
March 27, 2016 22:22
-
-
Save mateusfreira/82a4d6108fd596ece3f4 to your computer and use it in GitHub Desktop.
Dockerfile Jenkins + Node
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 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