File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ ENV NODE_CHECKSUM 3fc638727974262b4f65a6b1b43c22fb2d80671cdcb50e1237e0b05d1330aa
13
13
14
14
ENV GPG_VERSION 2.4.5_20240307
15
15
16
+ ENV GPG_TTY dwufhwuhf
17
+
16
18
RUN Invoke-WebRequest $('https://www.gnupg.org/ftp/gcrypt/binary/gnupg-w32-{0}.exe' -f $env:GPG_VERSION) -OutFile 'gpg-installer.exe' ; \
17
19
Start-Process -FilePath 'gpg-installer.exe' -ArgumentList '/S' -Wait; \
18
20
Remove-Item gpg-installer.exe -Force; \
Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ const getNodeVersionDirs = (base) => getChildDirectories(base)
24
24
25
25
// Returns the paths of Dockerfiles that are at: base/*/Dockerfile
26
26
const getDockerfilesInChildDirs = ( base ) => getChildDirectories ( base )
27
+ . map ( ( childDir ) => {
28
+ console . log ( `Checking ${ childDir } ` ) ;
29
+ return childDir ;
30
+ } )
27
31
. filter ( ( directory ) => ! windowsDirRegex . test ( path . basename ( directory ) ) )
28
32
. map ( ( childDir ) => path . resolve ( childDir , 'Dockerfile' ) ) ;
29
33
You can’t perform that action at this time.
0 commit comments