Sentry ( https://getsentry.com ) build for the RaspberryPI
Based on the Dockerfile from https://github.com/slafs/sentry-docker. My Dockerfile:
FROM resin/rpi-raspbian
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get install -y -q python python-pip libxslt1-dev libxml2-dev libpq-dev expect libldap2-dev libsasl2-dev libssl-dev
RUN pip install -U wheel pip setuptools
RUN mkdir -p /conf /data /wheels
ADD requirements.txt /conf/
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y -q python-dev
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y -q libffi-dev
RUN pip wheel --wheel-dir=/wheels -r /conf/requirements.txt && pip install --find-links=/wheels -r /conf/requirements.txt
EXPOSE 9000
VOLUME ["/data"]
ADD sentry_docker_conf.py /conf/
ADD sentry_run /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/sentry_run"]
CMD ["start"]
ADD scripts/create_team_or_project.py /conf/
# some cleanup
RUN apt-get clean
RUN rm -f /wheels/*
Content type
Image
Digest
sha256:4167ba68d…
Size
267.8 MB
Last updated
about 11 years ago
docker pull flipdot/rpi-sentry