From 9e16d17add96217001fc0dc969b0f757937df2ad Mon Sep 17 00:00:00 2001 From: jay817 Date: Tue, 27 Aug 2024 01:31:24 -0400 Subject: [PATCH] Add pip/README.md --- pip/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 pip/README.md diff --git a/pip/README.md b/pip/README.md new file mode 100644 index 0000000..69c9be3 --- /dev/null +++ b/pip/README.md @@ -0,0 +1,9 @@ + +```Dockerfile +FROM alpine:latest + +RUN apk add --no-cache tini py-pip curl gcc +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y +ENV PATH="/root/.cargo/bin:${PATH}" +RUN PIP_BREAK_SYSTEM_PACKAGES=1 pip install mitmproxy +``` \ No newline at end of file