mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 08:11:54 +00:00
12 lines
234 B
Docker
12 lines
234 B
Docker
FROM alpine:3.7
|
|
|
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
|
|
|
RUN apk add --no-cache privoxy
|
|
|
|
RUN sed -i'' 's/127\.0\.0\.1:8118/0\.0\.0\.0:8118/' /etc/privoxy/config
|
|
|
|
ADD bootstrap.sh /etc/bootstrap.sh
|
|
|
|
ENTRYPOINT ["/etc/bootstrap.sh"]
|