wohali commented on a change in pull request #59: Introduce a CI/CD-friendly 
Dockerfile
URL: https://github.com/apache/couchdb-docker/pull/59#discussion_r162414399
 
 

 ##########
 File path: dev-cluster/Dockerfile
 ##########
 @@ -0,0 +1,83 @@
+# Licensed under the Apache License, Version 2.0 (the "License"); you may not
+# use this file except in compliance with the License. You may obtain a copy of
+# the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations under
+# the License.
+
+FROM debian:jessie
+
+MAINTAINER CouchDB Developers [email protected]
+
+ENV COUCHDB_VERSION master
+
+RUN groupadd -r couchdb && useradd -d /usr/src/couchdb -g couchdb couchdb
+
+# download dependencies
+RUN apt-get update -y -qq && apt-get install -y --no-install-recommends \
+    apt-transport-https \
+    build-essential \
+    ca-certificates \
+    curl \
+    default-jdk \
+    erlang-dev \
+    erlang-nox \
+    git \
+    haproxy \
+    libcurl4-openssl-dev \
+    libicu-dev \
+    libmozjs185-dev \
+    libwxgtk3.0 \
+    openssl \
+    pkg-config \
+    python \
+    python-sphinx \
+    texinfo \
+    texlive-base \
+    texlive-fonts-extra \
+    texlive-fonts-recommended \
+    texlive-latex-extra \
+ && curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add 
- \
+ && echo 'deb https://deb.nodesource.com/node_6.x jessie main' > 
/etc/apt/sources.list.d/nodesource.list \
 
 Review comment:
   @garrensmith The README in Fauxton still says we require "at least Node 6 
and npm 3", is that no longer true? If not we'll need to change the build for 
non-dev instances, too.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to