File size: 145 Bytes
9e5fa5b
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM python:3.11-slim

WORKDIR /app
RUN pip install --no-cache-dir kafka-python

COPY snapshot_viewer.py .

CMD ["python", "snapshot_viewer.py"]