12 lines
309 B
Text
12 lines
309 B
Text
|
FROM debian:trixie-slim
|
||
|
MAINTAINER philo email phil.dev@philome.mooo.com
|
||
|
|
||
|
RUN apt update
|
||
|
RUN apt install --no-install-recommends -y python-is-python3 python3-pip python3-venv nodejs git
|
||
|
RUN pip install --break-system-packages pdm
|
||
|
|
||
|
RUN apt-get clean && \
|
||
|
rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
RUN rm -rf /root/.cache
|