26 lines
872 B
Docker
26 lines
872 B
Docker
FROM python:3.8-alpine as base
|
|
FROM base as builder
|
|
|
|
COPY requirements.txt /app/
|
|
COPY setup.py /app/
|
|
COPY README.md /app/
|
|
COPY proxy/ /app/proxy/
|
|
WORKDIR /app
|
|
RUN pip install --upgrade pip && \
|
|
pip install --install-option="--prefix=/deps" .
|
|
|
|
FROM base
|
|
|
|
LABEL com.abhinavsingh.name="abhinavsingh/proxy.py" \
|
|
com.abhinavsingh.description="⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on \
|
|
Network monitoring, controls & Application development, testing, debugging." \
|
|
com.abhinavsingh.url="https://github.com/abhinavsingh/proxy.py" \
|
|
com.abhinavsingh.vcs-url="https://github.com/abhinavsingh/proxy.py" \
|
|
com.abhinavsingh.docker.cmd="docker run -it --rm -p 8899:8899 abhinavsingh/proxy.py"
|
|
|
|
COPY --from=builder /deps /usr/local
|
|
|
|
EXPOSE 8899/tcp
|
|
ENTRYPOINT [ "proxy" ]
|
|
CMD [ "--hostname=0.0.0.0" ]
|