Adam Roderick
04/14/2020, 1:38 PMprefect.environments.storage.docker._build_image()
creates a temporary directory that it uses for the docker build context. However, later docker reports that it cannot find this directory. Simply changing it to an absolute path resolves this error.TemporaryDirectory(None)
is called, which results in a full path as shown belowZachary Hughes
04/14/2020, 2:52 PMAdam Roderick
04/14/2020, 3:00 PMZachary Hughes
04/14/2020, 3:10 PM