mirror of
https://github.com/SpecterOps/Nemesis
synced 2026-06-08 12:36:42 +00:00
10 lines
361 B
Docker
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 |