Running A TOR socks proxy in Kubernetes for fun ;-)
1. Lets create a TOR socks proxy image
This should be easy via this Dockerfile
FROM ubuntu ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -y bash curl privoxy tor tzdata vim net-tools
COPY config /etc/privoxy/config
COPY start.sh .
CMD [ "/start.sh"]