๐Ÿ“ฆ anna-geller / packaging-prefect-flows

๐Ÿ“„ Dockerfile ยท 10 lines
1
2
3
4
5
6
7
8
9
10FROM prefecthq/prefect:1.1.0-python3.9
RUN /usr/local/bin/python -m pip install --upgrade pip
WORKDIR /opt/prefect
COPY flow_utilities/ /opt/prefect/flow_utilities/
COPY requirements.txt .
COPY setup.py .
RUN pip install .
COPY flows/ /opt/prefect/flows/
COPY flows_no_build/ /opt/prefect/flows/
COPY flows_task_library/ /opt/prefect/flows/