We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf5ec08 commit 7f6fbfdCopy full SHA for 7f6fbfd
Dockerfile
@@ -0,0 +1,20 @@
1
+FROM alpine:3.6
2
+
3
+ENV VERSION="1.21.0"
4
5
+ENV INSTALL_PATH="/usr/local/bin/sentry-cli"
6
+ENV DOWNLOAD_URL="https://github.com/getsentry/sentry-cli/releases/download/$VERSION/sentry-cli-Linux-x86_64"
7
+RUN apk add --no-cache --update openssl
8
+RUN wget -O "$INSTALL_PATH" "$DOWNLOAD_URL"
9
+RUN chmod 0755 "$INSTALL_PATH"
10
11
+ENTRYPOINT ["sentry-cli"]
12
+CMD ["--help"]
13
14
15
+# FROM alpine:3.5
16
+# RUN apk add --no-cache ca-certificates openssh-client
17
+# COPY rancher /usr/bin/
18
+# WORKDIR /mnt
19
+# ENTRYPOINT ["rancher"]
20
+# CMD ["--help"]
0 commit comments