Skip to content

Commit b6fb8d3

Browse files
committed
update to 8.0.16 (with adoptopenjdk8)
1 parent e9b3cec commit b6fb8d3

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM java:8-jdk
1+
FROM adoptopenjdk/openjdk8
22
LABEL maintainer="mario.siegenthaler@linkyard.ch"
33

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

14-
ENV SDK_VERSION=6.3.6
14+
ENV SDK_VERSION=8.0.16
1515

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

0 commit comments

Comments
 (0)