Skip to content

Commit 435b7cf

Browse files
author
John Maguire
committed
Update to JDK8
1 parent d2927d0 commit 435b7cf

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

shopkeep-python-ci/Dockerfile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
FROM buildpack-deps:jessie
2-
MAINTAINER John Maguire <jmaguire@shopkeep.com>
2+
MAINTAINER DevOps <devops@shopkeep.com>
33

4-
ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/miniconda/bin
4+
ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/miniconda2/bin
55
ENV LANG C.UTF-8
66

77
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main" | tee -a /etc/apt/sources.list.d/pgdg.list
88
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | \
99
apt-key add -
1010

11+
RUN echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee /etc/apt/sources.list.d/webupd8team-java.list
12+
RUN echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
13+
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
14+
RUN apt-get update
15+
RUN echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | debconf-set-selections
16+
RUN apt-get install -y oracle-java8-installer
17+
1118
RUN apt-get update && apt-get install -y \
1219
openssh-server \
13-
openjdk-7-jdk \
1420
postgresql-9.3
1521

1622
# Install Conda

0 commit comments

Comments
 (0)