You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2018/07/24 06:36:56 UTC

[couchdb-docker] branch master updated: Use debian stretch, closes #91

This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-docker.git


The following commit(s) were added to refs/heads/master by this push:
     new 0d8752e  Use debian stretch, closes #91
0d8752e is described below

commit 0d8752ef22787adc737d050affadf1bb549b5023
Author: Joan Touzet <wo...@apache.org>
AuthorDate: Mon Jul 23 23:15:36 2018 -0700

    Use debian stretch, closes #91
---
 2.1.2/Dockerfile | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/2.1.2/Dockerfile b/2.1.2/Dockerfile
index 9520b6c..ed9cc38 100644
--- a/2.1.2/Dockerfile
+++ b/2.1.2/Dockerfile
@@ -10,7 +10,7 @@
 # License for the specific language governing permissions and limitations under
 # the License.
 
-FROM debian:jessie
+FROM debian:stretch
 
 MAINTAINER CouchDB Developers dev@couchdb.apache.org
 
@@ -22,9 +22,11 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
     curl \
     erlang-nox \
     erlang-reltool \
-    libicu52 \
+    libicu57 \
     libmozjs185-1.0 \
     openssl \
+    gpg \
+    dirmngr \
   && rm -rf /var/lib/apt/lists/*
 
 # grab gosu for easy step-down from root and tini for signal handling