kocolosk commented on a change in pull request #59: Introduce a CI/CD-friendly Dockerfile URL: https://github.com/apache/couchdb-docker/pull/59#discussion_r162523285
########## 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 out of curiosity where do I go to find the node release cycle? I tried https://github.com/nodejs/Release but I couldn't match it up with your comment here. ---------------------------------------------------------------- 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
