Skip to content

Commit

Permalink
prepare Dockerfile for new release/ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
rck committed Jul 6, 2017
1 parent 872b1db commit df690f3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ MAINTAINER Roland Kammerer <dev.rck@gmail.com>

# docker run -it --rm simplepush -k key -m message

ENV SIMPLEPUSH_VERSION 0.2
ENV SIMPLEPUSH_VERSION 0.3

RUN apk add --no-cache --virtual .build-deps wget ca-certificates
RUN apk add --no-cache wget ca-certificates
RUN wget "https://github.com/rck/simplepush/releases/download/v${SIMPLEPUSH_VERSION}/simplepush-alpine-amd64" -O /usr/local/bin/simplepush
# ADD simplepush-alpine-amd64 /usr/local/bin/simplepush
RUN chmod +x /usr/local/bin/simplepush
RUN apk del .build-deps
RUN apk del wget

ENTRYPOINT ["simplepush"]

0 comments on commit df690f3

Please sign in to comment.