blob: 30d5277231c73f8d862529a3cb58e9001525cfc2 [file] [log] [blame]
Pamela Dragoshd1728dc2017-02-14 19:57:17 -05001FROM ubuntu:14.04
2
Shashank Kumar Shankar3e5a0c32017-06-27 16:10:28 -07003ARG HTTP_PROXY=${HTTP_PROXY}
4ARG HTTPS_PROXY=${HTTPS_PROXY}
5
6ENV http_proxy $HTTP_PROXY
7ENV https_proxy $HTTPS_PROXY
8
Pamela Dragoshd1728dc2017-02-14 19:57:17 -05009RUN \
Pamela Dragosh6d4e15f2017-03-08 13:58:22 -050010 apt-get clean && \
Pamela Dragoshd1728dc2017-02-14 19:57:17 -050011 apt-get update && \
12 apt-get install -y zip unzip curl wget ssh telnet maven && \
13 apt-get install -y software-properties-common && \
Jorge Hernandezdc8bdd52017-06-19 23:02:43 -050014 apt-get install -y jq httpie && \
15 apt-get install -y python-pip && \
Pamela Dragoshd1728dc2017-02-14 19:57:17 -050016 add-apt-repository ppa:openjdk-r/ppa && \
Pamela Dragosh6d4e15f2017-03-08 13:58:22 -050017 apt-get clean && \
Pamela Dragoshd1728dc2017-02-14 19:57:17 -050018 apt-get update && \
19 apt-get install -y openjdk-8-jdk
20
21RUN useradd --create-home --shell /bin/bash policy