PG-RSCA-2526-TorAttack/experiment-infra/victim/Dockerfile

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" ]