8 lines
291 B
Docker
8 lines
291 B
Docker
FROM debian:bookworm
|
|
RUN apt update && apt -y install tor curl wireguard-tools
|
|
COPY ./torrc /etc/tor/torrc
|
|
COPY --chmod=700 ./entrypoint.sh /entrypoint.sh
|
|
COPY --chmod=700 ./script.sh /script.sh
|
|
ENV TARGET="https://rsca.vanrissenbeck.com"
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|
|
CMD [ "/script.sh" ] |