This is an automated email from the ASF dual-hosted git repository.
jbarrett 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 03b6be2 GEODE-4851: Reduce layers in Docker image.
03b6be2 is described below
commit 03b6be2675f4990a9b66b229a593bebc13b8e108
Author: Jacob Barrett <[email protected]>
AuthorDate: Fri Mar 16 12:40:19 2018 -0700
GEODE-4851: Reduce layers in Docker image.
---
docker/Dockerfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 3589ddb..c01c78e 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -17,9 +17,9 @@
FROM ubuntu
LABEL maintainer Apache Geode <[email protected]>
-RUN apt-get update
-RUN apt-get install -y build-essential doxygen git graphviz openjdk-8-jdk wget
zlib1g-dev
-RUN rm -rf /var/lib/apt/lists/*
+RUN apt-get update && \
+ apt-get install -y build-essential doxygen git graphviz openjdk-8-jdk
wget zlib1g-dev && \
+ rm -rf /var/lib/apt/lists/*
ENV GEODE_VERSION 1.4.0
RUN wget
"https://www.apache.org/dyn/closer.cgi?action=download&filename=geode/${GEODE_VERSION}/apache-geode-${GEODE_VERSION}.tgz"
-O - | \
--
To stop receiving notification emails like this one, please contact
[email protected].