summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 5928369f5df5e03451890f1e2c287f4e943768c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 && \
add-apt-repository ppa:webupd8team/java -y && \
apt-get update && \
apt-get install -y software-properties-common python net-tools git python3-pip vim libmysqlclient-dev scilab build-essential oracle-java8-installer && \
mkdir /Sites

VOLUME /src/online_test

WORKDIR /src/online_test