We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c23146f commit 7723476Copy full SHA for 7723476
1 file changed
pkg/docker/fast_push.go
@@ -86,6 +86,10 @@ func FastPush(ctx context.Context, image string, projectDir string, command comm
86
// Temp directory for tarballs extracted from the image
87
// Separate from other temp directories so that they don't cause cache invalidation
88
tmpTarballsDir := filepath.Join(projectDir, TarballsDir)
89
+ err = os.MkdirAll(tmpTarballsDir, 0o755)
90
+ if err != nil {
91
+ return err
92
+ }
93
// Upload python packages.
94
if requirementsFile != "" {
95
pythonTar, err := createPythonPackagesTarFile(ctx, image, tmpTarballsDir, command)
0 commit comments