Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 1 | FROM ubuntu:14.04 |
| 2 | |
Shashank Kumar Shankar | 3e5a0c3 | 2017-06-27 16:10:28 -0700 | [diff] [blame] | 3 | ARG HTTP_PROXY=${HTTP_PROXY} |
| 4 | ARG HTTPS_PROXY=${HTTPS_PROXY} |
| 5 | |
| 6 | ENV http_proxy $HTTP_PROXY |
| 7 | ENV https_proxy $HTTPS_PROXY |
| 8 | |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 9 | RUN \ |
Pamela Dragosh | 6d4e15f | 2017-03-08 13:58:22 -0500 | [diff] [blame] | 10 | apt-get clean && \ |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 11 | apt-get update && \ |
| 12 | apt-get install -y zip unzip curl wget ssh telnet maven && \ |
| 13 | apt-get install -y software-properties-common && \ |
Jorge Hernandez | dc8bdd5 | 2017-06-19 23:02:43 -0500 | [diff] [blame] | 14 | apt-get install -y jq httpie && \ |
| 15 | apt-get install -y python-pip && \ |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 16 | add-apt-repository ppa:openjdk-r/ppa && \ |
Pamela Dragosh | 6d4e15f | 2017-03-08 13:58:22 -0500 | [diff] [blame] | 17 | apt-get clean && \ |
Pamela Dragosh | d1728dc | 2017-02-14 19:57:17 -0500 | [diff] [blame] | 18 | apt-get update && \ |
| 19 | apt-get install -y openjdk-8-jdk |
| 20 | |
| 21 | RUN useradd --create-home --shell /bin/bash policy |