Skip to content

Commit 3f45368

Browse files
phymbertgarydgregory
authored andcommitted
[LOG4J2-1950] Fix docker build with jdk9 requirements. Closes #84.
1 parent d3a8f09 commit 3f45368

File tree

3 files changed

+60
-6
lines changed

3 files changed

+60
-6
lines changed

Dockerfile

+15-6
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,27 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
FROM openjdk:7-alpine
16+
# FROM openjdk:7-alpine
17+
# Reverted to debian yet alpine does not include jdk9
18+
FROM openjdk:7-jdk
19+
20+
# Require while jdk9 is unstable on debian
21+
RUN echo 'deb http://deb.debian.org/debian unstable main' >> /etc/apt/sources.list
1722

1823
RUN set -ex \
1924
&& mkdir /src \
20-
&& apk update \
21-
&& apk add curl \
22-
&& mkdir /opt \
25+
&& apt-get update \
26+
&& apt-get install -y \
27+
curl \
28+
openjdk-9-jdk-headless \
29+
&& ln -svT "/usr/lib/jvm/java-9-openjdk-$(dpkg --print-architecture)" /docker-java-9-home \
2330
&& cd /opt \
24-
&& curl -fsSL http://www-us.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz -o maven.tar.gz \
31+
&& curl -fsSL http://www-us.apache.org/dist/maven/maven-3/3.5.0/binaries/apache-maven-3.5.0-bin.tar.gz -o maven.tar.gz \
2532
&& tar -xzf maven.tar.gz \
2633
&& rm -f maven.tar.gz
34+
2735
COPY . /src
36+
2837
RUN set -ex \
2938
&& cd /src \
30-
&& /opt/apache-maven-3.3.9/bin/mvn verify
39+
&& /opt/apache-maven-3.5.0/bin/mvn verify --global-toolchains toolchains-docker.xml

src/changes/changes.xml

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
- "remove" - Removed
3232
-->
3333
<release version="2.9.0" date="2017-MM-DD" description="GA Release 2.9.0">
34+
<action issue="LOG4J2-1950" dev="ggregory" type="update" due-to="Pierrick HYMBERT">
35+
Fix docker build with jdk9 requirements (#84).
36+
</action>
3437
<action issue="LOG4J2-1801" dev="rpopma" type="update">
3538
Add more detail to WARN "Ignoring log event" messages printed to the console after log4j was shut down.
3639
</action>

toolchains-docker.xml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF8"?>
2+
<!--
3+
~ Licensed to the Apache Software Foundation (ASF) under one or more
4+
~ contributor license agreements. See the NOTICE file distributed with
5+
~ this work for additional information regarding copyright ownership.
6+
~ The ASF licenses this file to You under the Apache license, Version 2.0
7+
~ (the "License"); you may not use this file except in compliance with
8+
~ the License. You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing, software
13+
~ distributed under the License is distributed on an "AS IS" BASIS,
14+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
~ See the license for the specific language governing permissions and
16+
~ limitations under the license.
17+
-->
18+
<toolchains>
19+
<!-- JDK toolchains -->
20+
<toolchain>
21+
<type>jdk</type>
22+
<provides>
23+
<version>1.7</version>
24+
<vendor>sun</vendor>
25+
</provides>
26+
<configuration>
27+
<jdkHome>/docker-java-home</jdkHome>
28+
</configuration>
29+
</toolchain>
30+
<toolchain>
31+
<type>jdk</type>
32+
<provides>
33+
<version>9</version>
34+
<vendor>sun</vendor>
35+
</provides>
36+
<configuration>
37+
<jdkHome>/docker-java-9-home</jdkHome>
38+
</configuration>
39+
</toolchain>
40+
41+
<!-- other toolchains -->
42+
</toolchains>

0 commit comments

Comments
 (0)