Last active
January 11, 2018 04:51
-
-
Save mingkaic/6ee458825ed793161a64874964d7c14e to your computer and use it in GitHub Desktop.
minimal ubuntu docker container to share amongst multiple projects
This file contains hidden or 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:latest | |
| RUN apt-get update | |
| RUN apt-get -y install \ | |
| git \ | |
| curl \ | |
| dist-upgrade \ | |
| build-essential \ | |
| python-software-properties | |
| RUN curl -sL https://deb.nodesource.com/setup_7.x | bash - | |
| RUN apt-get install -y nodejs | |
| RUN mv /usr/bin/nodejs /usr/bin/node |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment