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
|
|
|
|
|
2018-06-15 23:30:39 +00:00
|
|
|
ENV VERSION="v0.13"
|
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-15 23:30:07 +00:00
|
|
|
VOLUME /app
|
|
|
|
|
2018-06-10 01:36:21 +00:00
|
|
|
ENTRYPOINT statup
|