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"]
1 2 3 4 5 6
FROM prefecthq/prefect:2-python3.9 COPY requirements.txt . RUN pip install -r requirements.txt COPY realtime-poc/ . CMD ["python", "real_time_flow.py"]