FROM python:3.13-slim

WORKDIR /app

COPY scripts/ scripts/

RUN pip install --no-cache-dir -r scripts/requirements.txt

ENV AVE_USE_DOCKER=true

ENTRYPOINT ["python", "scripts/ave_data_wss.py"]
