treetrail-backend/Containerfile.backend_ci_base

8 lines
301 B
Text
Raw Normal View History

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
RUN apt-get clean && rm -rf /var/lib/apt/lists/* && rm -rf /root/.cache