FROM python:3.12-slim WORKDIR /app COPY shared/ shared/ RUN pip install --no-cache-dir ./shared COPY services/data-collector/ services/data-collector/ RUN pip install --no-cache-dir ./services/data-collector ENV PYTHONPATH=/app CMD ["python", "-m", "data_collector.main"]