1

我需要在 Nano Server 中安装 Git。在我的研究中,我发现 Nano Server 无法处理 MSI 文件,这就是为什么我认为我可以轻松地将它下载到另一个容器(在我的情况下为 Windows Server Core)并将 Git 的内容移动到另一个容器(Nano服务器容器)(想法来自这里:https ://stefanscherer.github.io/how-to-build-nodejs-nanoserver-image/ )。我尝试使用以下 dockerfile:

FROM mcr.microsoft.com/windows/servercore:ltsc2019
RUN powershell Invoke-WebRequest -outfile gitsetup.exe https://github.com/git-for-windows/git/releases/download/v2.7.0.windows.1/Git-2.7.0-64-bit.exe

RUN setx /M Path "%Path%;c:\git\cmd;c:\git\bin;c:\git\usr\bin"

RUN powershell -command start-process .\gitsetup.exe -ArgumentList '/VERYSILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS /DIR=c:\git' -Wait

FROM mcr.microsoft.com/dotnet/core/sdk:3.1.101-nanoserver-1909

USER ContainerAdministrator
RUN setx /M Path "%Path%;c:\git\cmd;c:\git\bin;c:\git\usr\bin"
COPY --from=0 "c:\git\cmd" "c:\git\cmd"
COPY --from=0 "c:\git\bin" "c:\git\bin"
COPY --from=0 "c:\git\usr\bin" "c:\git\usr\bin"
USER ContainerUser
RUN git version

但是当我尝试构建映像时,在Step 12/14 : RUN git version挂起一段时间后出现以下错误:

命令“cmd /S /C git version”返回非零代码:3221225495 总线错误

我想好吧,这很简单,我只需RUN git version从 dockerfile 中删除 并在成功构建映像后直接在容器中运行命令,这样我就可以检查实际错误是什么。但是当我在附加的容器中调用 git 时,它只会挂起几秒钟并且什么都不做(就像我没有输入任何命令一样)。有任何想法吗?

PS:我不想要 MinGit(即使 MinGit 出于某种原因在 Nano Server 中工作),因为我使用 NPM,它会生成 MinGit 中不存在的 git 命令(从 GitHub 下载特定提交)。

PS2:我无法将我的主容器更改为 Windows Server Core,因为我将它与 .NET Core 和 Windows 容器一起使用。SDK 仅适用于 Nano Server 版本。

编辑:我尝试了@Voc 的答案,它有效。对于任何想要确切代码 dockerfile 的人:

FROM mcr.microsoft.com/windows/servercore:ltsc2019

RUN setx /M Path "c:\git\cmd;c:\git\bin;c:\git\usr\bin;%Path%;c:\gcc\bin;c:\7zip"

RUN powershell -command Invoke-WebRequest -outfile portableGit.7z.exe https://github.com/git-for-windows/git/releases/download/v2.26.0.windows.1/PortableGit-2.26.0-64-bit.7z.exe
RUN powershell -command Invoke-WebRequest -UserAgent 'DockerCI' -outfile 7zsetup.exe http://www.7-zip.org/a/7z1514-x64.exe
RUN powershell -command start-process .\7zsetup.exe -ArgumentList '/S /D=c:/7zip' -Wait

RUN powershell 7z x portableGit.7z.exe -ogit

FROM mcr.microsoft.com/dotnet/core/sdk:3.1.101-nanoserver-1909

USER ContainerAdministrator
RUN setx /M Path "C:\git\bin;C:\git\usr\bin;C:\git\mingw64\bin;C:\nodejs;%Path%"
COPY --from=0 "c:\git" "c:\git"
RUN git version
4

1 回答 1

0

首先,您不必运行 GIt for Windows 安装程序。

您还可以尝试在图像中的任何位置解压缩便携式可提取存档PortableGit-2.26.0-64-bit.7z.exe,然后添加到路径:

set GH=C:\path\to\git
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
于 2020-04-03T04:42:07.847 回答