File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
- FROM java:8-jdk
1
+ FROM adoptopenjdk/openjdk8
2
2
LABEL maintainer="mario.siegenthaler@linkyard.ch"
3
3
4
4
# Add Tini
5
- ENV TINI_VERSION v0.16.1
5
+ ENV TINI_VERSION v0.18.0
6
6
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
7
7
RUN chmod +x /tini
8
8
ENTRYPOINT ["/tini" , "--" ]
@@ -11,11 +11,13 @@ ENTRYPOINT ["/tini", "--"]
11
11
RUN apt-get -y update \
12
12
&& apt-get -y install apt-transport-https
13
13
14
- ENV SDK_VERSION=6.3.6
14
+ ENV SDK_VERSION=8.0.16
15
15
16
16
# 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 \
19
21
&& apt-get -y update \
20
22
&& apt-get -y install atlassian-plugin-sdk=${SDK_VERSION}
21
23
You can’t perform that action at this time.
0 commit comments