fast-whale-9064
06/15/2020, 5:46 PMechoing-breakfast-73834
06/15/2020, 9:32 PMArchive
classes. I'm using FileArchive(args.code_path)
to bundle everything in args.code_path
(a folder) and it works for mefast-whale-9064
06/15/2020, 9:40 PMpip install -r requirements.txt -t ./packages
, I found I could do:
code=pulumi.AssetArchive({
'.': pulumi.FileArchive('script_folder/'),
'./': pulumi.FileArchive('script_folder/packages/')})
echoing-breakfast-73834
06/16/2020, 3:26 PM