Hey, Prefect community ! Does a hosted docker imag...
# ask-community
k
Hey, Prefect community ! Does a hosted docker image with the package
prefect-aws
pre-installed exist? Thank you 🙂
n
hey @Kristian Andersen Hole I don’t think so, but if you wanted one it would be super quick to make
Copy code
FROM prefecthq/prefect:latest-python3.10

RUN pip install -U pip

RUN pip install prefect-aws==0.2.4
Copy code
docker build . -t yourdockerhubacct/repo:tag
Copy code
docker push yourdockerhubacct/repo:tag
👍 1
k
Thanks!
n
sure thing!