Skip to content

Instantly share code, notes, and snippets.

@mingkaic
Last active January 11, 2018 04:51
Show Gist options
  • Select an option

  • Save mingkaic/6ee458825ed793161a64874964d7c14e to your computer and use it in GitHub Desktop.

Select an option

Save mingkaic/6ee458825ed793161a64874964d7c14e to your computer and use it in GitHub Desktop.
minimal ubuntu docker container to share amongst multiple projects
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