From 0b194728d8b8ff20397716774193c7c23fe7185b Mon Sep 17 00:00:00 2001 From: brooks-macbeth-shadowdragon Date: Mon, 17 Dec 2018 10:51:56 -0600 Subject: [PATCH] Update Dockerfile This makes tor resolve v3 onion addresses --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 95361cc..884eff5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ -FROM alpine +FROM alpine:edge -RUN apk add tor --update-cache --repository http://dl-4.alpinelinux.org/alpine/edge/community/ --allow-untrusted haproxy ruby privoxy +RUN apk add 'tor' --no-cache \ + --repository http://dl-cdn.alpinelinux.org/alpine/edge/community \ + --repository http://dl-cdn.alpinelinux.org/alpine/edge/main \ + --allow-untrusted haproxy ruby privoxy RUN apk --update add --virtual build-dependencies ruby-bundler ruby-dev \ && apk add ruby-nokogiri --update-cache --repository http://dl-4.alpinelinux.org/alpine/v3.3/main/ \