We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f770395 + 5771f01 commit ad9e467Copy full SHA for ad9e467
Dockerfile
@@ -5,13 +5,17 @@ RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/reposito
5
6
# Install everything via repo, because repo & pip installs can break things
7
RUN apk update \
8
- && apk add --no-cache \
+ && apk add --no-cache \
9
bash \
10
mysql-client \
11
py3-magic \
12
py3-dateutil \
13
py3-six \
14
- s3cmd
+ s3cmd \
15
+ curl
16
+
17
+# Install Sentry CLI as a separate RUN command
18
+RUN curl -sL https://sentry.io/get-cli/ | bash
19
20
COPY application/ /data/
21
WORKDIR /data
0 commit comments