๐Ÿ“ฆ anna-geller / prefect-streaming

๐Ÿ“„ Dockerfile ยท 6 lines
1
2
3
4
5
6FROM prefecthq/prefect:2-python3.9
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY realtime-poc/ .
CMD ["python", "real_time_flow.py"]