mirror of
https://github.com/flibusta-apps/docker-tor-privoxy-alpine.git
synced 2025-12-06 06:35:38 +01:00
11 lines
172 B
Docker
11 lines
172 B
Docker
FROM alpine:latest
|
|
|
|
EXPOSE 8118 9050
|
|
|
|
RUN apk --no-cache add privoxy tor runit tini
|
|
|
|
COPY service /etc/service/
|
|
|
|
ENTRYPOINT ["tini", "--"]
|
|
CMD ["runsvdir", "/etc/service"]
|