Docker:使用dockerfile在Windows容器上安装Chrome

时间:2018-11-08 19:35:43

标签: docker dockerfile docker-container docker-image docker-windows

我正在尝试在Windows容器上安装Chrome。我已经使用dockerfile创建了我的docker映像,我想使用该dockerfile安装chrome。我已经尝试使用以下命令

RUN apt-get update -qqy \
&& apt-get -qqy install \
xvfb \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*

但是我有一个错误(我认为这是因为我在Windows容器上,并且此命令仅适用于unbutu容器...):

'apt-get' is not recognized as an internal or external command,
operable program or batch file.

有什么方法可以在Windows容器中安装Chrome吗?或任何替换“ apt-get”的命令?

谢谢。

1 个答案:

答案 0 :(得分:1)

这是我用来将无头的chrome安装到aspnet 4.5映像中的dockerfile。享受。

# extending the `microsoft/aspnet` image.
FROM microsoft/aspnet

RUN echo 'pull down choco'
RUN powershell -Command Install-PackageProvider -name chocolatey -Force
RUN powershell -Command Set-PackageSource -Name chocolatey -Trusted

RUN powershell -Command Get-PackageSource

RUN echo 'install chrome via choco'
RUN powershell -Command Install-Package GoogleChrome -MinimumVersion 74

另一种可能的路线。将所有安装程序复制到dockerfile旁边的“安装程序目录”中。然后将它们复制并手动运行。

FROM mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2019
RUN mkdir installers 
COPY ./installers/ /installers
RUN ["c:/installers/ChromeStandaloneSetup64.exe", "/silent", "/install"]
RUN ["c:/installers/Firefox Setup 66.0.3.exe", "-ms"]

希望这会有所帮助... 希望这会有所帮助