Files
SpecterOps-Nemesis/infra/docker/python_base/dev.Dockerfile
T
Lee Christensen 8035a6a168 add code
2025-06-13 11:33:07 +02:00

10 lines
361 B
Docker

# This is the development image for python projects
# It is a slim image with dev tools/programs installed
FROM python:3.12.3-slim
RUN apt-get update && \
apt-get install --no-install-suggests --no-install-recommends --yes pipx wget
ENV PATH="/root/.local/bin:${PATH}"
RUN pipx install poetry==2.0.1
RUN pipx inject poetry poetry-plugin-bundle
WORKDIR /src