Files
Lee Chagolla-Christensen 7547ed6eb3 fix packages, again
2026-01-26 19:16:45 -08:00

18 lines
500 B
Docker

# This is the development image for python projects
# It is a slim image with dev tools/programs installed
FROM python:3.13.2-slim
RUN apt-get update && \
apt-get install --no-install-suggests --no-install-recommends --yes \
wget curl procps net-tools htop jq iputils-ping git && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Install uv from official image
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
ENV UV_LINK_MODE=copy \
UV_COMPILE_BYTECODE=1
WORKDIR /src