We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e546140 commit c2a3c05Copy full SHA for c2a3c05
1 file changed
src/components/c2d/compute_engine_docker.ts
@@ -2757,6 +2757,11 @@ export class C2DEngineDocker extends C2DEngine {
2757
map: (header: any) => {
2758
header.uid = C2D_CONTAINER_UID
2759
header.gid = C2D_CONTAINER_GID
2760
+ // Docker's putArchive applies chmod but not chown — set directories
2761
+ // world-writable so the container user (uid 1000) can write to them
2762
+ if (header.type === 'Directory') {
2763
+ header.mode = 0o777
2764
+ }
2765
return header
2766
}
2767
} as any,
0 commit comments