1 Commits

Author SHA1 Message Date
Morten Olsen
86e03385c2 fix: missing nuclei path 2025-12-13 08:08:48 +01:00
2 changed files with 8 additions and 1 deletions

View File

@@ -60,7 +60,6 @@ USER 65532:65532
# Environment variables for nuclei
ENV NUCLEI_TEMPLATES_PATH=/nuclei-templates
ENV NUCLEI_BINARY_PATH=/usr/local/bin/nuclei
ENV HOME=/home/nonroot
ENTRYPOINT ["/manager"]

View File

@@ -460,6 +460,14 @@ func (m *JobManager) buildJob(scan *nucleiv1alpha1.NucleiScan) *batchv1.Job {
},
},
},
{
Name: "NUCLEI_BINARY_PATH",
Value: "/usr/local/bin/nuclei",
},
{
Name: "NUCLEI_TEMPLATES_PATH",
Value: "", // Empty means use default location (~/.nuclei/templates)
},
},
},
},