diff options
Diffstat (limited to 'policy-os/Dockerfile')
-rw-r--r-- | policy-os/Dockerfile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/policy-os/Dockerfile b/policy-os/Dockerfile new file mode 100644 index 00000000..7acbf825 --- /dev/null +++ b/policy-os/Dockerfile @@ -0,0 +1,12 @@ +FROM ubuntu:14.04 + +#RUN add-apt-repository ppa:openjdk-r/ppa +RUN \ + apt-get update && \ + apt-get install -y zip unzip curl wget ssh telnet maven && \ + apt-get install -y software-properties-common && \ + add-apt-repository ppa:openjdk-r/ppa && \ + apt-get update && \ + apt-get install -y openjdk-8-jdk + +RUN useradd --create-home --shell /bin/bash policy |