This commit is contained in:
2022-02-01 14:12:03 +01:00
commit 30f4cbd113
4 changed files with 37 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM alpine:edge
RUN apk add --update --no-cache privoxy
ADD bin /bin
RUN set -e && cd /etc/privoxy && for x in *.new; do mv $x $(basename "$x" .new); done
USER privoxy
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["start.sh"]