這是我第一次嘗試使用.net核心和docker。我無法弄清楚什麼是錯的。DotNet構建CLI在終端工作,但不在Docker構建
我可以在終端中運行dotnet restore
/dotnet build
/dotnet run
沒有任何問題。該網站加載得很好。所以我想給docker一個嘗試(最終在雲中的VM上運行)。
我跑docker build -t latest .
導致:
Step 5 : RUN dotnet build
---> Running in e463aff85460
Project app (.NETCoreApp,Version=v1.0) will be compiled because project is not safe for incremental compilation. Use --build-profile flag for more information.
Compiling app for .NETCoreApp,Version=v1.0
/app/project.json(32,58): error NU1001: The dependency Microsoft.EntityFrameworkCore.Sqlite >= 1.0.1 could not be resolved.
Compilation failed.
0 Warning(s)
1 Error(s)
Time elapsed 00:00:00.0174732
The command 'dotnet build' returned a non-zero code: 1
我試圖改變project.json SQLite的版本沒有任何的運氣。
的NuGet回購: 飼料中使用:
https://www.myget.org/F/aspnetcirelease/api/v3/index.json
https://api.nuget.org/v3/index.json
dotnet --version
1.0.0-preview3-003786
沒有編輯的dockerfile:
FROM microsoft/dotnet:latest
COPY . /app
WORKDIR /app
RUN ["dotnet", "restore"]
RUN ["dotnet", "build"]
EXPOSE 5000/tcp
CMD ["dotnet", "run", "--server.urls", "http://*:5000"]
試過沒有任何的運氣創造了一些谷歌搜索後.dockerignore:
.git
Dockerfile
.DS_Store
.gitignore
README.md
project.lock.json
我在最新的macOS上(10.12)。
的package.json:努力打造泊塢窗容器後
{
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.1",
"type": "platform"
},
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
"Microsoft.AspNetCore.Mvc": "1.0.1",
"Microsoft.AspNetCore.Razor.Tools": {
"version": "1.0.0-preview2-final",
"type": "build"
},
"Microsoft.AspNetCore.Routing": "1.0.1",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
"Microsoft.Extensions.Configuration.Json": "1.0.0",
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0",
"Microsoft.Extensions.Logging": "1.0.0",
"Microsoft.Extensions.Logging.Console": "1.0.0",
"Microsoft.Extensions.Logging.Debug": "1.0.0",
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
"Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0",
"Microsoft.EntityFrameworkCore": "1.0.1",
"Microsoft.EntityFrameworkCore.Design": {
"version": "1.0.0-preview2-final",
"type": "build"
},
"Microsoft.EntityFrameworkCore.Relational": "1.0.1",
"Microsoft.EntityFrameworkCore.SQLite": "1.0.1",
"Microsoft.EntityFrameworkCore.Sqlite.Design": "1.0.1"
},
"tools": {
"BundlerMinifier.Core": "2.0.238",
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
"Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final",
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
},
"frameworks": {
"netcoreapp1.0": {
"imports": [
"dotnet5.6",
"portable-net45+win8"
]
}
},
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},
"runtimeOptions": {
"configProperties": {
"System.GC.Server": true
}
},
"publishOptions": {
"include": [
"wwwroot",
"**/*.cshtml",
"appsettings.json",
"web.config"
]
},
"scripts": {
"precompile": [ "dotnet bundle" ],
"prepublish": [ "bower install" ],
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
},
"tooling": {
"defaultNamespace": "MyFirstApp"
}
}
輸出:
Sending build context to Docker daemon 26.39 MB
Step 1 : FROM microsoft/dotnet:latest
---> 96d122fe36cb
Step 2 : WORKDIR /root
---> Using cache
---> 0c5317108a5b
Step 3 : COPY bin/Debug/netcoreapp1.0/publish/ /root/
---> Using cache
---> d79700fa6c36
Step 4 : ENTRYPOINT dotnet /root/MyProject.dll
---> Using cache
---> a99f30826ddd
Successfully built a99f30826ddd
一個更好的鏈接描述圖片之間的區別https://docs.microsoft.com/en-us/dotnet/articles/core/docker/building-net-docker-images – Dennis
1.&2. dotnet而不是docke R-命令? – DannyThunder
@DannyThunder是的 - 我用碼頭而不是dotnet,謝謝。這是深夜..編輯 – rudolfdobias