1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-04-15 16:42:46 +02:00

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
cloudapp
sentry

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

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