mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
34 lines
631 B
Docker
34 lines
631 B
Docker
FROM debian:jessie
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
g++ \
|
|
libpq5 \
|
|
libpq-dev \
|
|
libxml2-dev \
|
|
locales \
|
|
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"]
|
|
|
|
CMD ["upgrade"]
|