diff --git a/image/pip b/image/pip
index befbb83adc78b78d28d6e153197c3786b82c55b8..bac7d01d78ed15fa100f6e509e20014bea5441fc 100644
--- a/image/pip
+++ b/image/pip
@@ -10,7 +10,7 @@ WORKDIR /silkaj
 COPY ./ ./
 
 # Install Silkaj
-RUN pip install .
+RUN pip install . silkaj[deathreaper]
 
 # ------------------------------------------------------------------------------
 # Final Stage
diff --git a/image/poetry b/image/poetry
index e9decf1fe631965096366c01e857b4267a724d5a..759e324da4de0221941f32277968404ffb723f5f 100644
--- a/image/poetry
+++ b/image/poetry
@@ -10,7 +10,7 @@ WORKDIR /silkaj
 COPY ./ ./
 
 # Install Silkaj
-RUN poetry install --only main
+RUN poetry install --only main --extras deathreaper
 
 # ------------------------------------------------------------------------------
 # Final Stage