containers/tor/Dockerfile

10 lines
191 B
Docker
Raw Normal View History

2023-03-05 14:04:45 -06:00
FROM alpine:latest
LABEL org.opencontainers.image.authors="kaan@bgenc.net"
RUN apk add --no-cache tor && mkdir -p /etc/tor
VOLUME /etc/tor/
CMD [ "/usr/bin/tor", "-f", "/etc/tor/torrc" ]