I built a custom image and pushed it to the demo d...
# ask-the-community
g
I built a custom image and pushed it to the demo docker registry in localhost:30000,
Copy code
image_config = ImageConfig.auto(
    img_name="localhost:30000/my_test_image:latest"
)

remote.register_workflow(
    standard_scale_workflow,
    serialization_settings=SerializationSettings(image_config=image_config),
    version="v1.1",
)
i get this error when i launch a workflow ModuleNotFoundError: No module named 'workflows' which folder must we copy the files to in dockerfile so it sees my workflows folder?
s
we need to improve the UX around
register_workflow
. could you use
register_script
? https://docs.flyte.org/en/latest/flytesnacks/examples/feast_integration/feast_flyte_remote.html#register-the-code