statping/Dockerfile

13 lines
283 B
Docker
Raw Normal View History

2018-06-15 21:13:19 +00:00
FROM alpine
2018-06-10 01:31:13 +00:00
2018-06-15 21:13:19 +00:00
RUN apk add --no-cache libc6-compat
ENV VERSION="v0.12"
2018-06-10 01:31:13 +00:00
2018-06-10 01:51:50 +00:00
WORKDIR /app
2018-06-15 21:13:19 +00:00
RUN wget -q https://github.com/hunterlong/statup/releases/download/$VERSION/statup-linux-x64
RUN chmod +x statup-linux-x64 && mv statup-linux-x64 /usr/local/bin/statup
2018-06-10 01:31:13 +00:00
EXPOSE 8080
2018-06-10 01:36:21 +00:00
ENTRYPOINT statup