Add pip/README.md

This commit is contained in:
2024-08-27 01:31:24 -04:00
parent 0290cb73f1
commit 9e16d17add

9
pip/README.md Normal file
View File

@@ -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
```