Files
wiki/pip/README.md
2024-08-27 01:36:58 -04:00

8 lines
128 B
Markdown

```Dockerfile
FROM alpine:latest
ENV PIP_BREAK_SYSTEM_PACKAGES=1
RUN apk add --no-cache tini py-pip
RUN pip install -U pip
```