From 01192ccecd4a7c7c37c4d7fcd6056f4f20b448a3 Mon Sep 17 00:00:00 2001 From: Szwendacz Date: Mon, 9 Jun 2025 10:50:56 +0000 Subject: [PATCH] Update snowflake/Containerfile --- snowflake/Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/snowflake/Containerfile b/snowflake/Containerfile index f3e1877..01e0072 100644 --- a/snowflake/Containerfile +++ b/snowflake/Containerfile @@ -1,7 +1,8 @@ FROM registry.fedoraproject.org/fedora-minimal ENV TZ=Europe/Warsaw -RUN dnf5 install -y shadow-utils git golang && \ +# install also tor, for geoip data +RUN dnf5 install -y shadow-utils git golang tor && \ useradd -u 1423 -m -s '/bin/bash' -U snowflake && \ ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \ git clone https://git.torproject.org/pluggable-transports/snowflake.git && \