You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-tor-hidden-service/Dockerfile

24 lines
490 B
Docker

9 years ago
FROM debian:jessie
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
tor \
python3 \
git \
ca-certificates
ADD assets/docker-entrypoint.sh /
ADD assets/tor_config.py /
9 years ago
RUN chmod +x /docker-entrypoint.sh
9 years ago
9 years ago
RUN git clone https://github.com/cmehay/python-docker-tool.git /docker --branch=old
9 years ago
RUN touch /docker/__init__.py
VOLUME ["/var/lib/tor/hidden_service/"]
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["tor"]