We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f6fbfd commit c4aad62Copy full SHA for c4aad62
Dockerfile
@@ -1,20 +1,12 @@
1
-FROM alpine:3.6
+FROM ubuntu:16.04
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
+RUN apt-get update && apt-get install -y wget
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