Jacek Kowalski
2017-03-18 b3137edfaf8c0a87c2b1272fa6d4c0030fd950d8
Install Java 8 from jessie-backports
1 files modified
9 ■■■■■ changed files
Dockerfile 9 ●●●●● patch | view | raw | blame | history
Dockerfile
@@ -1,11 +1,14 @@
FROM debian
FROM debian:jessie
MAINTAINER Jacek Kowalski <Jacek@jacekk.info>
ENV UNIFI_VERSION 5.3.8
RUN apt-get update \
RUN echo 'deb http://httpredir.debian.org/debian jessie-backports main' > \
                /etc/apt/sources.list.d/jessie-backports.list \
    && apt-get update \
    && apt-get -y dist-upgrade \
    && apt-get -y install wget jsvc openjdk-7-jre-headless mongodb-server binutils \
    && apt-get -y -t jessie-backports install \
        wget jsvc openjdk-8-jre-headless mongodb-server binutils \
    && apt-get -y clean
RUN cd /tmp \