This is an automated email from the ASF dual-hosted git repository.
bbender pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git
The following commit(s) were added to refs/heads/develop by this push:
new b309e96 GEODE-8183: Update dockerfile versions (#604)
b309e96 is described below
commit b309e9658b00ff85eb0543c99b56c14da6748af3
Author: M. Oleske <[email protected]>
AuthorDate: Thu May 28 06:15:22 2020 -0700
GEODE-8183: Update dockerfile versions (#604)
- Geode from 1.9 to 1.12
- CMake from 3.12.2 to 3.12.4
- Set to noninteractive so that building doesn't require interaction
- Make key=value for LABEL clearer
---
docker/Dockerfile | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 384778a..7fea5cc 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -15,9 +15,10 @@
# limitations under the License.
FROM ubuntu
-LABEL maintainer Apache Geode <[email protected]>
+LABEL maintainer="Apache Geode <[email protected]>"
ENV CLANG_VERSION 6.0
+ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y \
libc++-dev \
@@ -41,7 +42,7 @@ RUN apt-get update && \
update-alternatives --install /usr/bin/clang-tidy clang-tidy
/usr/bin/clang-tidy-${CLANG_VERSION} 999 && \
update-alternatives --install /usr/bin/clang-format clang-format
/usr/bin/clang-format-${CLANG_VERSION} 999
-ENV GEODE_VERSION 1.9.0
+ENV GEODE_VERSION 1.12.0
RUN wget
"https://www.apache.org/dyn/closer.cgi?action=download&filename=geode/${GEODE_VERSION}/apache-geode-${GEODE_VERSION}.tgz"
--quiet -O - | \
tar xzf -
@@ -49,7 +50,7 @@ ENV RAT_VERSION 0.13
RUN wget
"https://www.apache.org/dyn/closer.cgi?action=download&filename=creadur/apache-rat-${RAT_VERSION}/apache-rat-${RAT_VERSION}-bin.tar.gz"
--quiet -O - | \
tar xzf -
-ENV CMAKE_VERSION 3.12.2
+ENV CMAKE_VERSION 3.12.4
RUN wget
"https://cmake.org/files/v${CMAKE_VERSION%.*}/cmake-${CMAKE_VERSION}-Linux-x86_64.sh"
--quiet -O /tmp/cmake && \
bash /tmp/cmake --skip-license --prefix=/usr/local && \
rm -rf /tmp/cmake