1
0
mirror of https://github.com/cmur2/openvpn-status-web.git synced 2024-07-01 00:34:43 +02:00
openvpn-status-web/docs/Dockerfile
cn e4034073a6 release: 3.1.0
- Ruby 3.0
- move from Travis CI to Github Actions
- dependency updates
2021-01-18 20:56:53 +01:00

16 lines
489 B
Docker

FROM alpine:3.13
EXPOSE 8080
ENV VERSION=3.1.0
RUN apk --no-cache add openssl ca-certificates && \
apk --no-cache add ruby ruby-etc ruby-webrick && \
apk --no-cache add --virtual .build-deps ruby-dev build-base tzdata && \
gem install --no-document openvpn-status-web -v ${VERSION} && \
# set timezone to Berlin
cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime && \
apk del .build-deps
ENTRYPOINT ["openvpn-status-web", "/etc/openvpn-status-web/config.yml"]