You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2018/11/09 18:15:33 UTC

[geode-native] branch develop updated: GEODE-6012: Corrected package name in Dockerfile (#395)

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 5cb8443  GEODE-6012: Corrected package name in Dockerfile (#395)
5cb8443 is described below

commit 5cb8443c2cd861e986821cf8e0f1b86d27ce9a10
Author: Ivan Godwin <ig...@pivotal.io>
AuthorDate: Fri Nov 9 10:15:28 2018 -0800

    GEODE-6012: Corrected package name in Dockerfile (#395)
    
    
    - libc++api-dev (non-existent) changed to libc++abi-dev
---
 docker/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 55b6523..0e560a6 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -21,7 +21,7 @@ ENV CLANG_VERSION 6.0
 RUN apt-get update && \
         apt-get install -y \
             libc++-dev \
-            libc++api-dev \
+            libc++abi-dev \
             clang-${CLANG_VERSION} \
             clang-tidy-${CLANG_VERSION} \
             clang-format-${CLANG_VERSION} \