Skip to content

Commit ad9e467

Browse files
authored
Merge pull request #36 from silinternational/develop
Adding the Curl for installing Sentry-cli
2 parents f770395 + 5771f01 commit ad9e467

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/reposito
55

66
# Install everything via repo, because repo & pip installs can break things
77
RUN apk update \
8-
&& apk add --no-cache \
8+
&& apk add --no-cache \
99
bash \
1010
mysql-client \
1111
py3-magic \
1212
py3-dateutil \
1313
py3-six \
14-
s3cmd
14+
s3cmd \
15+
curl
16+
17+
# Install Sentry CLI as a separate RUN command
18+
RUN curl -sL https://sentry.io/get-cli/ | bash
1519

1620
COPY application/ /data/
1721
WORKDIR /data

0 commit comments

Comments
 (0)