我们正在使用appveyor进行所有(.NET)应用程序的持续部署。
现在我们在Docker中运行我们的应用程序。
我正在尝试为docker配置appveyor。
Haven没有找到任何适当的文件。
是否有针对docker的示例appveyor.yml文件。
提前致谢..
答案 0 :(得分:4)
这里的关键是使用基于Windows Server 2016的Visual Studio 2017
映像并安装了Docker。最小appveyor.yml
将是:
image: Visual Studio 2017
build_script:
- docker images # or your own docker command goes here
test: off