/ AIG-PromptSecurity / Dockerfile
Dockerfile
1 FROM python:3.12-slim 2 3 ENV DEEPEVAL_TELEMETRY_OPT_OUT=YES 4 ENV DEEPTEAM_TELEMETRY_OPT_OUT=YES 5 6 WORKDIR /app/AIG-PromptSecurity 7 8 RUN apt-get update && apt-get install -y --no-install-recommends git curl \ 9 && rm -rf /var/lib/apt/lists/* \ 10 && (command -v uv >/dev/null 2>&1 || pip install --no-cache-dir uv) 11 12 COPY . . 13 14 RUN uv sync 15 16 CMD ["bash"]