lixonet-ee/Dockerfile.wireguard_router

11 lines
225 B
Docker
Raw Normal View History

2022-12-21 21:51:47 -07:00
FROM ghcr.io/linuxserver/wireguard
MAINTAINER Team Lixo <lixonet@team.lixo>
WORKDIR /app
2022-12-21 22:00:46 -07:00
ADD wireguard/check_routes.sh /app
2022-12-21 21:51:47 -07:00
RUN chmod -R 700 /app && chmod +x /app/check_routes.sh
2022-12-21 22:04:44 -07:00
ENTRYPOINT ["/app/check_routes.sh"]
CMD []