-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
19 lines (18 loc) · 885 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM coders51/elixir-postgres
MAINTAINER Igor Kurinnoy <[email protected]>
RUN echo "# Generate locales" && \
echo "# Upgrade apt" && \
sed -i 's/main$/main contrib/g' /etc/apt/sources.list && \
apt-get update && apt-get upgrade -y && \
echo "# Install common dev dependencies via apt" && \
add-apt-repository ppa:launchpad/ppa && \
apt-get update && \
apt-get install -y git build-essential erlang-base-hipe erlang-dev erlang-manpages erlang-eunit erlang-nox libicu-dev libmozjs185-dev libcurl4-openssl-dev libtool autotools-dev automake autoconf-archive && \
cd /tmp && \
git clone git://github.com/apache/couchdb.git && \
cd couchdb && \
git checkout 1.6.x && \
./bootstrap; ./configure; make; make install && \
./bin/couchdb -b && \
apt-get clean
ENTRYPOINT /tmp/couchdb/bin/couchdb -b && bash