mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2024-11-06 16:00:28 +01:00
0c1502f801
+ Added Docker Install arg to wgd.sh
31 lines
1.1 KiB
Docker
31 lines
1.1 KiB
Docker
# Pull from small Debian stable image.
|
|
FROM alpine:latest AS builder
|
|
|
|
LABEL maintainer="dselen@nerthus.nl"
|
|
|
|
WORKDIR /opt/wireguarddashboard/src
|
|
|
|
RUN apk update && \
|
|
apk add --no-cache sudo gcc musl-dev rust cargo linux-headers
|
|
|
|
COPY ./docker/alpine/builder.sh /opt/wireguarddashboard/src/
|
|
COPY ./docker/alpine/requirements.txt /opt/wireguarddashboard/src/
|
|
RUN chmod u+x /opt/wireguarddashboard/src/builder.sh
|
|
RUN /opt/wireguarddashboard/src/builder.sh
|
|
|
|
|
|
FROM alpine:latest
|
|
WORKDIR /opt/wireguarddashboard/src
|
|
|
|
COPY ./src /opt/wireguarddashboard/src/
|
|
COPY --from=builder /opt/wireguarddashboard/src/venv /opt/wireguarddashboard/src/venv
|
|
COPY --from=builder /opt/wireguarddashboard/src/log /opt/wireguarddashboard/src/log/
|
|
|
|
RUN apk update && \
|
|
apk add --no-cache wireguard-tools sudo && \
|
|
apk add --no-cache iptables ip6tables && \
|
|
chmod u+x /opt/wireguarddashboard/src/entrypoint.sh
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 CMD curl -f http://localhost:10086/signin || exit 1
|
|
|
|
ENTRYPOINT ["/opt/wireguarddashboard/src/entrypoint.sh"] |