Last active
December 4, 2016 15:51
-
-
Save carpedm20/1a95a147222cfdc5ed63 to your computer and use it in GitHub Desktop.
Dockerfile
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 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