mirror of
https://github.com/getsentry/coredump-uploader.git
synced 2026-01-25 08:32:22 +01:00
8 lines
198 B
Docker
8 lines
198 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && apt-get install \
|
|
gcc \
|
|
gdb \
|
|
elfutils \
|
|
python-pip -y && pip install sentry-sdk && ulimit -c unlimited && mkdir coredump-uploader && pip install click
|