mirror of
https://github.com/flibusta-apps/docker-tor-privoxy-alpine.git
synced 2025-12-06 06:35:38 +01:00
12 lines
324 B
Docker
12 lines
324 B
Docker
FROM alpine:3.2
|
|
|
|
EXPOSE 8118 9050
|
|
|
|
RUN echo '@edge http://nl.alpinelinux.org/alpine/edge/main' >> /etc/apk/repositories && \
|
|
echo '@testing http://nl.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories && \
|
|
apk --update add privoxy@edge tor@testing runit@testing
|
|
|
|
COPY runit /runit
|
|
|
|
CMD ["runsvdir", "/runit"]
|