dockerfiles/sentry/Dockerfile

34 lines
631 B
Docker
Raw Normal View History

2014-10-06 19:55:32 -07:00
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
2014-10-09 10:02:35 -07:00
g++ \
2014-10-06 19:55:32 -07:00
libpq5 \
libpq-dev \
libxml2-dev \
2014-10-09 10:02:35 -07:00
locales \
2014-10-06 19:55:32 -07:00
postgresql-client-9.4 \
postgresql-client-common \
python \
python-dev \
python-pip \
--no-install-recommends
# locales
ENV LANGUAGE en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
RUN locale-gen en_US.UTF-8
RUN dpkg-reconfigure locales
RUN pip install psycopg2
RUN pip install sentry
EXPOSE 9000
ADD sentry.conf.py /sentry.conf.py
ENTRYPOINT ["/usr/local/bin/sentry", "--config=/sentry.conf.py"]
2014-10-09 10:02:35 -07:00
CMD ["upgrade"]