fix cloudapp and sentry

Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
Jessica Frazelle
2015-06-05 12:07:08 -07:00
parent 198f1bcd98
commit b624addd86
2 changed files with 18 additions and 14 deletions

View File

@@ -3,9 +3,11 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
g++ \
libffi-dev \
libpq5 \
libpq-dev \
libxml2-dev \
libxslt1-dev \
locales \
postgresql-client-9.4 \
postgresql-client-common \
@@ -15,14 +17,14 @@ RUN apt-get update && apt-get install -y \
--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
ENV LANGUAGE en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
ENV DEBIAN_FRONTEND noninteractive
RUN locale-gen en_US.UTF-8 \
&& dpkg-reconfigure locales
RUN pip install psycopg2
RUN pip install sentry
RUN pip install psycopg2 sentry
EXPOSE 9000