blob: 8cb8af464ff577300dfb23453f948850fed0105a (
plain)
1
2
3
4
5
6
7
8
|
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"]
|