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

 ##########
 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:
   Its fine to use node 6. I recall you asking me to try to use node 6 for as 
long as possible so I have intentionally made sure it still works on 6. But 
since this is a dev image it would be better if we were using a more recent 
version of Node.

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