mirror of
https://github.com/cmur2/openvpn-status-web.git
synced 2025-06-29 00:30:24 +02:00
docs: add example Dockerfile
This commit is contained in:
15
docs/Dockerfile
Normal file
15
docs/Dockerfile
Normal file
@ -0,0 +1,15 @@
|
||||
FROM alpine:3.12
|
||||
|
||||
EXPOSE 8080
|
||||
|
||||
ENV VERSION=2.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"]
|
Reference in New Issue
Block a user