From 30a101caf618b1cf80509dc9a8813c9e2e37fe8a Mon Sep 17 00:00:00 2001
From: Manish R Jain <manish@dgraph.io>
Date: Thu, 26 Jul 2018 22:15:15 -0700
Subject: [PATCH] Install CA certs, curl and ping in Dgraph Docker image.

---
 contrib/Dockerfile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/contrib/Dockerfile b/contrib/Dockerfile
index 98a49c6c..3a88bdd7 100644
--- a/contrib/Dockerfile
+++ b/contrib/Dockerfile
@@ -7,6 +7,10 @@
 FROM ubuntu:latest
 MAINTAINER Dgraph Labs <contact@dgraph.io>
 
+RUN apt-get update && \
+  apt-get install -y --no-install-recommends ca-certificates curl iputils-ping && \
+  rm -rf /var/lib/apt/lists/*
+
 ADD linux /usr/local/bin
 
 EXPOSE 8080
-- 
GitLab