Skip to content

Commit 7f6fbfd

Browse files
committed
Initital try
1 parent cf5ec08 commit 7f6fbfd

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Dockerfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)