19 lines
280 B
Docker
19 lines
280 B
Docker
FROM alpine:3.21.3
|
|
|
|
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
|
|
|
|
ENV ALLOWED_NETWORKS="127.0.0.1/32"
|
|
|
|
RUN apk add --no-cache tinyproxy m4
|
|
|
|
COPY tinyproxy.conf.m4 /etc/tinyproxy
|
|
COPY start.sh /etc/tinyproxy
|
|
|
|
WORKDIR /etc/tinyproxy
|
|
|
|
EXPOSE 3128
|
|
|
|
CMD [ "./start.sh" ]
|
|
|
|
|