datatracker/docker/Dockerfile

80 lines
2.3 KiB
Docker

# -*- shell-mode -*-
# This file is a docker (https://www.docker.com/what-docker) recipe, which can be used to build
# a docker image which is ready to run a datatracker in development mode.
#
# It is used to build an image (once you've installed docker) using a command like this (assuming
# suitable replacement of $variables:
#
# $ docker build -t $yourdockerid/datatracker:$version
#
# To use a pre-built image, assuming we're on OS X and have a checked-out datatracker repository
# at /Users/$login/src/6.8.1.dev0, you would start (again assuming you've installed docker)
# a container from an image, as follows:
#
# $ docker run -ti --name=$containername -v /Users/$login:/home/$login levkowetz/datatracker:$version /bin/bash
#
# This maps your home directory to /home/$login in the container, and starts it running /bin/bash.
#
# In this first version, the docker environment is set up so that tests will run successfully,
# but the database has *not* been loaded with a dump, and supporting files (drafts, charters, etc.)
# have *not* been downloaded.
FROM debian:wheezy
MAINTAINER Henrik Levkowetz <henrik@levkowetz.com>
# Default django runserver port
EXPOSE 8000
# Use backports
RUN echo "deb http://http.debian.net/debian wheezy-backports main contrib non-free" >> /etc/apt/sources.list
# Run apt-get noninteractive
ENV DEBIAN_FRONTEND=noninteractive
# Install needed packages
RUN apt-get update && apt-get install -qy \
ca-certificates \
gawk \
less \
libmysqlclient-dev \
libsvn1/wheezy-backports \
libxml2-dev \
libxslt-dev \
mysql-server \
procps \
pv \
python \
python-dev \
python-m2crypto \
subversion/wheezy-backports \
wget \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Set up root password
RUN echo "root:codesprint" | chpasswd
# MySQL
VOLUME /var/lib/mysql
# Pip
ENV PYTHONWARNINGS="ignore:a true SSLContext object"
WORKDIR /usr/src
RUN wget -q https://bootstrap.pypa.io/get-pip.py && python get-pip.py && rm get-pip.py
RUN pip install virtualenv
# idnits and dependencies
RUN wget -q -P /usr/local/bin/ https://tools.ietf.org/tools/idnits/idnits && chmod +x /usr/local/bin/idnits
ENV DDIR="/usr/local/share/datatracker"
RUN mkdir -p $DDIR
WORKDIR $DDIR
COPY requirements.txt ./
COPY settings_local.py ./
RUN pip install -r requirements.txt
COPY docker-init.sh /docker-init.sh
ENTRYPOINT ["/docker-init.sh"]
CMD /bin/bash