mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
50 lines
2.0 KiB
Docker
50 lines
2.0 KiB
Docker
#
|
|
# Dockerfile for warcprox tests
|
|
#
|
|
# Copyright (C) 2015-2016 Internet Archive
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
# USA.
|
|
#
|
|
|
|
FROM phusion/baseimage
|
|
MAINTAINER Noah Levitt <nlevitt@archive.org>
|
|
|
|
# see https://github.com/stuartpb/rethinkdb-dockerfiles/blob/master/trusty/2.1.3/Dockerfile
|
|
|
|
ENV LANG=C.UTF-8
|
|
|
|
RUN apt-get update && apt-get --auto-remove -y dist-upgrade
|
|
|
|
# Add the RethinkDB repository and public key
|
|
# "RethinkDB Packaging <packaging@rethinkdb.com>" http://download.rethinkdb.com/apt/pubkey.gpg
|
|
RUN apt-key adv --keyserver pgp.mit.edu --recv-keys 1614552E5765227AEC39EFCFA7E00EF33A8F2399 \
|
|
&& echo "deb http://download.rethinkdb.com/apt trusty main" > /etc/apt/sources.list.d/rethinkdb.list \
|
|
&& apt-get update && apt-get -y install rethinkdb
|
|
|
|
RUN mkdir -vp /etc/service/rethinkdb \
|
|
&& echo "#!/bin/sh\nrethinkdb --bind 0.0.0.0 --directory /tmp/rethink-data --runuser rethinkdb --rungroup rethinkdb\n" > /etc/service/rethinkdb/run \
|
|
&& chmod a+x /etc/service/rethinkdb/run
|
|
|
|
RUN apt-get -y install python-virtualenv git
|
|
RUN apt-get -y install python-gdbm python3-gdbm libpython2.7-dev libpython3.4-dev libffi-dev libssl-dev
|
|
RUN pip install devpi-client
|
|
|
|
RUN apt-get -y install tor
|
|
RUN mkdir -vp /etc/service/tor \
|
|
&& echo "#!/bin/sh\ntor\n" > /etc/service/tor/run \
|
|
&& chmod a+x /etc/service/tor/run
|
|
|