diff --git a/chrome/beta/Dockerfile b/chrome/beta/Dockerfile index a1aa7d5..3269cc4 100644 --- a/chrome/beta/Dockerfile +++ b/chrome/beta/Dockerfile @@ -21,8 +21,8 @@ MAINTAINER Jessie Frazelle ADD https://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb /src/google-talkplugin_current_amd64.deb # Install Chrome -RUN echo 'deb http://httpredir.debian.org/debian testing main' >> /etc/apt/sources.list && \ - apt-get update && apt-get install -y \ +RUN apt-get update && apt-get install -y \ + apt-transport-https \ ca-certificates \ curl \ gnupg \ @@ -31,11 +31,10 @@ RUN echo 'deb http://httpredir.debian.org/debian testing main' >> /etc/apt/sourc libgl1-mesa-glx \ libpulse0 \ libv4l-0 \ - -t testing \ fonts-symbola \ --no-install-recommends \ && curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ - && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list \ + && echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list \ && apt-get update && apt-get install -y \ google-chrome-beta \ --no-install-recommends \ diff --git a/chrome/stable/Dockerfile b/chrome/stable/Dockerfile index 6ce6812..64b9b07 100644 --- a/chrome/stable/Dockerfile +++ b/chrome/stable/Dockerfile @@ -21,8 +21,8 @@ MAINTAINER Jessie Frazelle ADD https://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb /src/google-talkplugin_current_amd64.deb # Install Chrome -RUN echo 'deb http://httpredir.debian.org/debian testing main' >> /etc/apt/sources.list && \ - apt-get update && apt-get install -y \ +RUN apt-get update && apt-get install -y \ + apt-transport-https \ ca-certificates \ curl \ gnupg \ @@ -31,11 +31,10 @@ RUN echo 'deb http://httpredir.debian.org/debian testing main' >> /etc/apt/sourc libgl1-mesa-glx \ libpulse0 \ libv4l-0 \ - -t testing \ fonts-symbola \ --no-install-recommends \ && curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ - && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list \ + && echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list \ && apt-get update && apt-get install -y \ google-chrome-stable \ --no-install-recommends \ diff --git a/privoxy/Dockerfile b/privoxy/Dockerfile index 416a2d6..57d5303 100644 --- a/privoxy/Dockerfile +++ b/privoxy/Dockerfile @@ -2,6 +2,8 @@ # # docker run -d \ # --restart always \ +# # the link inside the container must be named "torproxy" +# # see: https://github.com/jessfraz/dockerfiles/blob/master/privoxy/privoxy.conf#L1317 # --link torproxy:torproxy \ # -v /etc/localtime:/etc/localtime:ro \ # -p 8118:8118 \