mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
fix cloudapp and sentry
Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
parent
198f1bcd98
commit
b624addd86
|
@ -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"]
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user