Skip to content

Instantly share code, notes, and snippets.

@rnewson
Created August 20, 2014 13:53
Show Gist options
  • Save rnewson/8065fb9d5dfb0854fc1f to your computer and use it in GitHub Desktop.
Save rnewson/8065fb9d5dfb0854fc1f to your computer and use it in GitHub Desktop.
Run CouchDB tests inside Docker
FROM ubuntu:12.04
MAINTAINER Robert Newson <rnewson@apache.org>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -qq update
RUN apt-get -y install erlang-nox build-essential libmozjs185-dev libicu-dev
RUN useradd -m couchdb
USER couchdb
WORKDIR /home/couchdb
ADD apache-couchdb-1.6.1.tar.gz /home/couchdb/
WORKDIR /home/couchdb/apache-couchdb-1.6.1
RUN ./configure
RUN make check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment