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 2017/08/22 18:15:36 UTC

[couchdb] branch master updated: Removing Dockerfile in favour of apache/couchdb-docker repo

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.git


The following commit(s) were added to refs/heads/master by this push:
     new 6e57c43  Removing Dockerfile in favour of apache/couchdb-docker repo
6e57c43 is described below

commit 6e57c43a5ce6ac8fa9a0691a2bdce21116ee5507
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Tue Aug 22 14:15:20 2017 -0400

    Removing Dockerfile in favour of apache/couchdb-docker repo
---
 Dockerfile | 36 ------------------------------------
 1 file changed, 36 deletions(-)

diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 774d856..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,36 +0,0 @@
-FROM debian:jessie
-MAINTAINER Robert Newson <rn...@apache.org>
-ENV DEBIAN_FRONTEND noninteractive
-
-# Configure backports
-RUN apt-get -qq update
-
-# Install prereqs
-RUN apt-get --no-install-recommends -y install \
-    build-essential \
-    ca-certificates \
-    curl \
-    erlang-dev \
-    erlang-nox \
-    git \
-    libicu-dev \
-    libmozjs185-dev \
-    python
-
-# Build couchdb
-RUN useradd -m couchdb
-ADD . /home/couchdb
-WORKDIR /home/couchdb
-
-# We don't to be so strict for simple testing.
-RUN sed -i'' '/require_otp_vsn/d' rebar.config.script
-
-# Expose nodes on external network interface
-RUN sed -i'' 's/bind_address = 127.0.0.1/bind_address = 0.0.0.0/' rel/overlay/etc/default.ini
-
-# Build
-RUN ./configure
-RUN make couch
-
-EXPOSE 15984 25984 35984 15986 25986 35986
-ENTRYPOINT ["/home/couchdb/dev/run"]

-- 
To stop receiving notification emails like this one, please contact
['"commits@couchdb.apache.org" <co...@couchdb.apache.org>'].