diff options
author | ankitjavalkar | 2017-11-15 17:11:26 +0530 |
---|---|---|
committer | ankitjavalkar | 2018-01-04 11:37:20 +0530 |
commit | 9a871cee5d6836b82cc906ad74bc6731bb8e72f7 (patch) | |
tree | cf3b646f904e1b0efed05f94fe913de46940981a | |
parent | c883413f4e7ef4642f9d18a0d383612f6abd9391 (diff) | |
download | online_test-9a871cee5d6836b82cc906ad74bc6731bb8e72f7.tar.gz online_test-9a871cee5d6836b82cc906ad74bc6731bb8e72f7.tar.bz2 online_test-9a871cee5d6836b82cc906ad74bc6731bb8e72f7.zip |
Move Dockerfile to dedicated directory
-rw-r--r-- | docker/Dockerfile (renamed from Dockerfile) | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Dockerfile b/docker/Dockerfile index 6a7d894..cc0fd30 100644 --- a/Dockerfile +++ b/docker/Dockerfile @@ -1,11 +1,13 @@ FROM ubuntu:16.04 + MAINTAINER FOSSEE <pythonsupport@fossee.in> # Update Packages and Install Python & net-tools -RUN apt-get update && \ -apt-get install -y software-properties-common && \ +RUN apt-get update -y && apt-get install git python3-pip vim libmysqlclient-dev sudo -y + +RUN apt-get install -y software-properties-common && \ echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \ add-apt-repository -y ppa:webupd8team/java && \ apt-get update && \ apt-get install -y oracle-java8-installer && \ -apt-get install -y sudo python net-tools git python3-pip vim libmysqlclient-dev scilab build-essential python3-numpy python3-scipy ipython3 ipython3-notebook python3-pandas python3-nose +apt-get install -y python net-tools scilab build-essential python3-numpy python3-scipy ipython3 ipython3-notebook python3-pandas python3-nose |