diff --git a/image/pip b/image/pip
index 9ce535682bcf68159e4c1c1c54ca43ce83f1a14e..d46232dea3bbec4704f5e10576e4caa4e09e1a57 100644
--- a/image/pip
+++ b/image/pip
@@ -18,7 +18,7 @@ RUN poetry install --only main --no-root
 
 # Copy source tree, install and build Silkaj
 COPY ./ ./
-RUN poetry install --only main --extras deathreaper
+RUN poetry install --only main
 RUN poetry build
 
 # ------------------------------------------------------------------------------
@@ -40,7 +40,7 @@ RUN apt update && \
 
 # Copy the build artifact from the build stage
 COPY --from=build "/silkaj/dist/silkaj-*-py3-none-any.whl" .
-RUN pip install silkaj-*-py3-none-any.whl
+RUN pip install silkaj[deathreaper] silkaj-*-py3-none-any.whl
 
 # Use silkaj user
 USER silkaj