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

WORKDIR /app
COPY oeg_simulator.py .

# Install requests and any other deps
RUN pip install --no-cache-dir requests
RUN pip install --no-cache-dir kafka-python

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