Compare commits

..
2 Commits
Author SHA1 Message Date
thuanle 1cdb1ad4bc Ensure USER directive is placed before CMD in Dockerfile for Privoxy
Weekly Docker Build / build (arm64) (push) Successful in 8s
Weekly Docker Build / build (amd64) (push) Successful in 18s
Weekly Docker Build / amend-manifest (push) Successful in 6s
2025-07-11 12:45:01 +07:00
thuanle 97e97a2403 Update CMD in Dockerfile to specify the config path for Privoxy 2025-07-11 12:44:39 +07:00
+3 -1
View File
@@ -2,4 +2,6 @@ FROM alpine:latest
RUN apk add --no-cache privoxy RUN apk add --no-cache privoxy
CMD ["privoxy", "--no-daemon"] USER 1000:1000
CMD ["privoxy", "--no-daemon", "/etc/privoxy/config"]