| FROM python:3.12-slim | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| bash \ | |
| build-essential \ | |
| ca-certificates \ | |
| curl \ | |
| git \ | |
| jq \ | |
| openssh-client \ | |
| rsync \ | |
| unzip \ | |
| zip \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ | |
| && apt-get update && apt-get install -y --no-install-recommends nodejs \ | |
| && npm install -g npm@latest \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN pip install --no-cache-dir uv | |
| WORKDIR /srv/workspaces | |
| CMD ["sleep", "infinity"] | |