8 lines
324 B
Text
8 lines
324 B
Text
|
FROM debian:trixie-slim
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install --no-install-recommends -y python-is-python3 python3-pip python3-venv nodejs git podman buildah pipx && \
|
||
|
apt-get clean && rm -rf /var/lib/apt/lists/* && rm -rf /root/.cache && \
|
||
|
rm -rf /root/.cache && \
|
||
|
pip install --break-system-packages uv
|