From 3f606bde5a6483a9249cba3d6785bcb7b7bb4252 Mon Sep 17 00:00:00 2001 From: papasmile Date: Fri, 14 Aug 2020 16:17:40 -0400 Subject: [PATCH 1/6] Create Dockerfile --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..057816eb61 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM maven:3.6.3-jdk-11 + +COPY / / + +CMD ["mvn test"] From 1c541ed01f4f5ae96fa15ba85d6cd1cdb581f253 Mon Sep 17 00:00:00 2001 From: papasmile Date: Fri, 14 Aug 2020 16:20:16 -0400 Subject: [PATCH 2/6] Update Dockerfile --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 057816eb61..6265586a54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,3 @@ FROM maven:3.6.3-jdk-11 COPY / / - -CMD ["mvn test"] From 4b34ca020e05f01cd5aa048322c5621f6d030db2 Mon Sep 17 00:00:00 2001 From: papasmile Date: Fri, 14 Aug 2020 16:25:10 -0400 Subject: [PATCH 3/6] Update Dockerfile --- Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6265586a54..baf73535f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,18 @@ + # Licensed to the Apache Software Foundation (ASF) under one or more + # contributor license agreements. See the NOTICE file distributed with + # this work for additional information regarding copyright ownership. + # The ASF licenses this file to You under the Apache License, Version 2.0 + # (the "License"); you may not use this file except in compliance with + # the License. You may obtain a copy of the License at + # + # http://www.apache.org/licenses/LICENSE-2.0 + # + # Unless required by applicable law or agreed to in writing, software + # distributed under the License is distributed on an "AS IS" BASIS, + # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + # See the License for the specific language governing permissions and + # limitations under the License. + FROM maven:3.6.3-jdk-11 COPY / / From d2c4c2d39460dc223d109f8bc39e368605676075 Mon Sep 17 00:00:00 2001 From: papasmile Date: Fri, 14 Aug 2020 17:16:18 -0400 Subject: [PATCH 4/6] Update Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index baf73535f6..2f90a51eb2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +ENV JAVA_HOME /usr/local/openjdk-11 + FROM maven:3.6.3-jdk-11 COPY / / From 7008030c4fa53674a0353891f654217ca452dc28 Mon Sep 17 00:00:00 2001 From: papasmile Date: Fri, 14 Aug 2020 17:23:06 -0400 Subject: [PATCH 5/6] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2f90a51eb2..9bf3d6ef44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -ENV JAVA_HOME /usr/local/openjdk-11 - FROM maven:3.6.3-jdk-11 +ENV JAVA_HOME /usr/local/openjdk-11 + COPY / / From 5f93d3229ee1a89bfa9d86ad123679fc0cda83d1 Mon Sep 17 00:00:00 2001 From: papasmile Date: Fri, 14 Aug 2020 17:23:16 -0400 Subject: [PATCH 6/6] Update Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 9bf3d6ef44..c9fc2fc439 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,3 +18,4 @@ FROM maven:3.6.3-jdk-11 ENV JAVA_HOME /usr/local/openjdk-11 COPY / / +