Skip to content

Instantly share code, notes, and snippets.

FROM prefecthq/prefect:3-latest
RUN apt-get update && apt-get install -y wget
RUN wget -qO- https://astral.sh/uv/install.sh | sh
#RUN sh $HOME/.local/bin/env
COPY . /opt/prefect
WORKDIR /opt/prefect
RUN pip install -r requirements.txt
FROM prefecthq/prefect:3-latest
RUN apt-get update && apt-get install -y wget
RUN wget -qO- https://astral.sh/uv/install.sh | sh
COPY . /opt/prefect
WORKDIR /opt/prefect
RUN pip install -r requirements.txt
RUN pip install uv