10 lines
No EOL
209 B
Docker
10 lines
No EOL
209 B
Docker
FROM debian:bullseye-slim
|
|
|
|
RUN apt-get update -y && apt-get install -y tor
|
|
|
|
COPY ./usr/local/sbin/hostname.sh /usr/local/sbin/hostname
|
|
RUN chmod +x /usr/local/sbin/hostname
|
|
|
|
USER debian-tor
|
|
|
|
ENTRYPOINT ["tor"] |