Skip to content

Commit

Permalink
update to 8.0.16 (with adoptopenjdk8)
Browse files Browse the repository at this point in the history
  • Loading branch information
msiegenthaler committed Jul 9, 2019
1 parent e9b3cec commit b6fb8d3
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM java:8-jdk
FROM adoptopenjdk/openjdk8
LABEL maintainer="[email protected]"

# Add Tini
ENV TINI_VERSION v0.16.1
ENV TINI_VERSION v0.18.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN chmod +x /tini
ENTRYPOINT ["/tini", "--"]
Expand All @@ -11,11 +11,13 @@ ENTRYPOINT ["/tini", "--"]
RUN apt-get -y update \
&& apt-get -y install apt-transport-https

ENV SDK_VERSION=6.3.6
ENV SDK_VERSION=8.0.16

# Install atlassian sdk
RUN echo "deb http://sdkrepo.atlassian.com/debian/ stable contrib" >>/etc/apt/sources.list \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B07804338C015B73 \
RUN echo "deb https://packages.atlassian.com/debian/atlassian-sdk-deb/ stable contrib" >>/etc/apt/sources.list \
&& apt-get -y install gnupg2 \
&& curl https://packages.atlassian.com/api/gpg/key/public -o /tmp/public \
&& apt-key add /tmp/public \
&& apt-get -y update \
&& apt-get -y install atlassian-plugin-sdk=${SDK_VERSION}

Expand Down

0 comments on commit b6fb8d3

Please sign in to comment.