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