Files
PVS/agent/Dockerfile
2026-03-29 16:33:30 -04:00

16 lines
278 B
Docker

FROM python:3.11-slim
RUN apt-get update && apt-get install -y --no-install-recommends curl \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY agent.py .
EXPOSE 8001
CMD ["python", "agent.py"]