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
1313
1414ENV GPG_VERSION 2.4.5_20240307
1515
16+ ENV GPG_TTY dwufhwuhf
17+
1618RUN Invoke-WebRequest $('https://www.gnupg.org/ftp/gcrypt/binary/gnupg-w32-{0}.exe' -f $env:GPG_VERSION) -OutFile 'gpg-installer.exe' ; \
1719 Start-Process -FilePath 'gpg-installer.exe' -ArgumentList '/S' -Wait; \
1820 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)
2424
2525// Returns the paths of Dockerfiles that are at: base/*/Dockerfile
2626const getDockerfilesInChildDirs = ( base ) => getChildDirectories ( base )
27+ . map ( ( childDir ) => {
28+ console . log ( `Checking ${ childDir } ` ) ;
29+ return childDir ;
30+ } )
2731 . filter ( ( directory ) => ! windowsDirRegex . test ( path . basename ( directory ) ) )
2832 . map ( ( childDir ) => path . resolve ( childDir , 'Dockerfile' ) ) ;
2933
You can’t perform that action at this time.
0 commit comments