Skip to content

Instantly share code, notes, and snippets.

@carpedm20
Last active December 4, 2016 15:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carpedm20/1a95a147222cfdc5ed63 to your computer and use it in GitHub Desktop.
Save carpedm20/1a95a147222cfdc5ed63 to your computer and use it in GitHub Desktop.
Dockerfile
FROM dockerfile/ubuntu
MAINTAINER Taehoon Kim(carpedm20@gmail.com)
# Run upgrades
RUN apt-get update
# Install basic packages
RUN apt-get -qq -y install git curl build-essential openssl libssl-dev python-software-properties g++ make
# Install Python
RUN apt-get -qq -y install python
RUN apt-get -qq -y install python-pip
RUN apt-get -qq -y install python-virtualenv
RUN apt-get -qq -y install ipython
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment