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

@ -1,12 +1,14 @@
FROM ruby:latest
FROM ruby:1.9.3
MAINTAINER Jessica Frazelle <jess@docker.com>
# update gems
RUN gem update --system
RUN gem update
RUN apt-get update && apt-get install -y \
libcurl3-dev \
--no-install-recommends
# install cloudapp
RUN gem install gem-man
RUN gem install cloudapp
# update gems
# and install cloudapp
RUN gem update --system \
&& gem update \
&& gem install gem-man cloudapp
ENTRYPOINT ["cloudapp"]

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 \
@ -18,11 +20,11 @@ RUN apt-get update && apt-get install -y \
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 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