2022-06-28 09:05:02 +02:00
|
|
|
FROM weejewel/wg-easy:7
|
2022-05-05 00:13:32 +02:00
|
|
|
|
|
|
|
# hadolint ignore=DL3022,DL3023
|
2022-11-22 21:05:40 +01:00
|
|
|
COPY --from=mindflavor/prometheus-wireguard-exporter:3.6.4 /usr/local/bin/prometheus_wireguard_exporter /usr/local/bin/
|
2022-05-05 00:13:32 +02:00
|
|
|
|
|
|
|
RUN apk add -U --no-cache \
|
2022-05-05 00:20:32 +02:00
|
|
|
wireguard-tools=1.0.20200102-r0
|
2022-05-05 00:13:32 +02:00
|
|
|
|
|
|
|
COPY entrypoint.sh /app/entrypoint.sh
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
|
|
|
|
EXPOSE 9586/tcp
|
|
|
|
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|
|
|
|
CMD ["/usr/bin/dumb-init", "node", "server.js"]
|