https://prefect.io logo
Title
k

Kristian Andersen Hole

02/20/2023, 1:41 PM
Hey, Prefect community ! Does a hosted docker image with the package
prefect-aws
pre-installed exist? Thank you 🙂
n

Nathan Nowack

02/20/2023, 4:56 PM
hey @Kristian Andersen Hole I don’t think so, but if you wanted one it would be super quick to make
FROM prefecthq/prefect:latest-python3.10

RUN pip install -U pip

RUN pip install prefect-aws==0.2.4
docker build . -t yourdockerhubacct/repo:tag
docker push yourdockerhubacct/repo:tag
👍 1
k

Kristian Andersen Hole

02/20/2023, 5:07 PM
Thanks!
n

Nathan Nowack

02/20/2023, 5:15 PM
sure thing!