Skip to content

Commit

Permalink
Install sentry-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-z committed Feb 17, 2024
1 parent c00fe8e commit 762e954
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ RUN apt-get update -y \
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \
apt-get install -y --no-install-recommends git-lfs

# Install Docker Compose
RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \
&& echo "ARCH: $ARCH" \
&& if [ "$ARCH" = "arm64" ]; then export ARCH=aarch64 ; fi \
Expand All @@ -46,6 +47,11 @@ RUN export ARCH=$(echo ${TARGETPLATFORM} | cut -d / -f2) \
&& which docker-compose \
&& docker compose version

# Install sentry-cli
RUN wget -q -O /usr/local/bin/sentry-cli https://github.com/getsentry/sentry-cli/releases/download/2.28.6/sentry-cli-Linux-x86_64 \
&& echo "790c1c4a0e59112d25b8efdf00211881851f4f33443c4e885df336d16b88b457 /usr/local/bin/sentry-cli" | sha256sum -c - \
&& chmod +x /usr/local/bin/sentry-cli

# Python packages get installed to ~/.local by default
ENV PATH="${PATH}:/home/runner/.local/bin"

Expand Down

0 comments on commit 762e954

Please sign in to comment.