2024-10-23 16:19:51 +02:00
|
|
|
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
|
2024-10-23 16:58:04 +02:00
|
|
|
RUN pip install --break-system-packages uv
|
2024-10-23 18:20:24 +02:00
|
|
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/* && rm -rf /root/.cache
|