File size: 485 Bytes
de31cf7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | FROM python:3.11-slim
LABEL maintainer="Shield Agents Contributors"
LABEL description="AI-Powered Multi-Agent Cybersecurity Scanner"
LABEL version="2.0.0"
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy package
COPY . .
# Install the package
RUN pip install --no-cache-dir -e .
# Create reports directory
RUN mkdir -p /app/shield-reports
# Default command
ENTRYPOINT ["shield-agents"]
CMD ["scan", "--help"]
|