openvpn-status-web/docs/Dockerfile

16 lines
489 B
Docker
Raw Normal View History

2021-01-18 15:00:41 +01:00
FROM alpine:3.13
2020-07-13 10:37:08 +02:00
EXPOSE 8080
2022-01-18 23:18:00 +01:00
ENV VERSION=3.2.1
2020-07-13 10:37:08 +02:00
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"]