Skip to content

Commit c4aad62

Browse files
committed
Use ubuntu as base image
1 parent 7f6fbfd commit c4aad62

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

Dockerfile

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
1-
FROM alpine:3.6
1+
FROM ubuntu:16.04
22

33
ENV VERSION="1.21.0"
44

55
ENV INSTALL_PATH="/usr/local/bin/sentry-cli"
66
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
7+
RUN apt-get update && apt-get install -y wget
88
RUN wget -O "$INSTALL_PATH" "$DOWNLOAD_URL"
99
RUN chmod 0755 "$INSTALL_PATH"
1010

1111
ENTRYPOINT ["sentry-cli"]
1212
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)