salmon-refrigerator-32115
06/27/2023, 11:32 PMtall-lock-23197
And I heard I don’t have to include spark related commands with the latest flytekit anymore.Yes! https://github.com/flyteorg/flytekit/pull/1616
fancy-plumber-70674
06/28/2023, 9:08 AMFROM <http://ghcr.io/flyteorg/flytekit:tag|ghcr.io/flyteorg/flytekit:tag> # whichever tag you want to build on
USER root
# Upgrade pip, git not needed if you don't want it
RUN apt-get -y install git && pip install --upgrade pip
# Install custom packages
RUN pip install ........ \
.......
USER flytekit
CMD [] # Not needed
This is a basic Dockerfile structure we use to build custom images
@salmon-refrigerator-32115tall-lock-23197
salmon-refrigerator-32115
06/28/2023, 5:43 PM