File tree Expand file tree Collapse file tree 2 files changed +2
-30
lines changed Expand file tree Collapse file tree 2 files changed +2
-30
lines changed Original file line number Diff line number Diff line change 1
1
FROM ubuntu:14.04
2
2
3
- MAINTAINER Alex Fraser <alex@vpac-innovations.com.au>
3
+ MAINTAINER Kevin Littlejohn <kevin@littlejohn.id.au>, \
4
+ Alex Fraser <alex@vpac-innovations.com.au>
4
5
5
6
# Install base dependencies.
6
- # Run a caching proxy on the host and bind a port to APT_PROXY_PORT to cache
7
- # apt requests. Build with `docker build --build-arg APT_PROXY_PORT=[X] [...]`.
8
- # Not required if you're using a transparent proxy (like the one built by
9
- # this project).
10
7
WORKDIR /root
11
- ARG APT_PROXY_PORT=
12
- COPY detect-apt-proxy.sh /root/
13
8
RUN export DEBIAN_FRONTEND=noninteractive TERM=linux \
14
- && ./detect-apt-proxy.sh ${APT_PROXY_PORT} no \
15
9
&& apt-get update \
16
10
&& apt-get install -y --no-install-recommends \
17
11
build-essential \
@@ -24,8 +18,6 @@ RUN export DEBIAN_FRONTEND=noninteractive TERM=linux \
24
18
ssl-cert \
25
19
&& apt-get source -y squid3 squid-langpack \
26
20
&& apt-get build-dep -y squid3 squid-langpack
27
- # rm -rf /var/lib/apt/lists/* \
28
- # /etc/apt/apt.conf.d/30proxy \
29
21
30
22
# Customise and build Squid.
31
23
# It's silly, but run dpkg-buildpackage again if it fails the first time. This
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments