6 lines
185 B
Docker
6 lines
185 B
Docker
FROM debian:bookworm
|
|
RUN apt update && apt -y install tor curl
|
|
COPY ./torrc /etc/tor/torrc
|
|
COPY --chmod=700 ./entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|
|
CMD [ "bash" ] |