Files
darkproxy/tailscale/Dockerfile
T
auto-ci b6d49549fe
Configuration validation / lint (push) Has been cancelled
Configuration validation / smoke (push) Has been cancelled
Pin deployment images and refresh docs
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-02 15:23:53 -04:00

17 lines
417 B
Docker

#syntax=docker/dockerfile:1
FROM tailscale/tailscale@sha256:dbeff02d2337344b351afac203427218c4d0a06c43fc10a865184063498472a6
RUN apk add --no-cache \
iptables \
socat \
curl \
bash \
redsocks
COPY ./post-rules.sh /post-rules.sh
COPY ./redsocks.conf /etc/redsocks.conf
RUN chmod +x /post-rules.sh
# Entrypoint to configure and start Tailscale + traffic redirection
ENTRYPOINT ["/post-rules.sh"]