55S*_*K55 10 docker .net-core dockerfile
我在一个解决方案中有 3 个项目。
[解决方案]'BuySellApi'(3个项目)
|
+-- [BuySellApi]
| |
| +--- BuySellApi.csproj(该项目包含Docker文件)
|
+-- [BuySellApi.Core]
| |
| +--- BuySellApi.Core.csproj
|
+-- [BuySellApi.Data]
|
+--- BuySellApi.Data.csproj
1. BuySellApi.csproj -> API
2. BuySellApi.Data/BuySellApi.Data.csproj -> 模型
3. BuySellApi.Core/BuySellApi.Core.csproj -> 数据访问
我正在尝试通过在Dockerfile 中指定以下命令来使用 Docker 构建它
FROM microsoft/dotnet:2.2-aspnetcore-runtime AS base
WORKDIR /app
EXPOSE 5000
ENV ASPNETCORE_URLS=http://+:5000
FROM microsoft/dotnet:2.2-sdk AS build
WORKDIR /src
COPY ["BuySellApi.csproj", "./"]
COPY ["BuySellApi.Data/BuySellApi.Data.csproj", "./"]
COPY ["BuySellApi.Core/BuySellApi.Core.csproj", "./"]
RUN dotnet restore "./BuySellApi.csproj"
COPY . .
WORKDIR "/src/."
RUN dotnet build "BuySellApi.csproj" -c Release -o /app
FROM build AS publish
RUN dotnet publish "BuySellApi.csproj" -c Release -o /app
FROM base AS final
WORKDIR /app
COPY --from=publish /app .
ENTRYPOINT ["dotnet", "BuySellApi.dll", "--server.urls", "http://0.0.0.0:5000"]
Run Code Online (Sandbox Code Playgroud)
运行以下命令后
docker build -t cog/buysellapi .
我收到如下错误:
e:\Apps\trunk\BuySell\BuySellApi>docker build -t cog/buysellapi .
Sending build context to Docker daemon 19.15MB
Step 1/19 : FROM microsoft/dotnet:2.2-aspnetcore-runtime AS base
---> ce06b36fcba4
Step 2/19 : WORKDIR /app
---> Using cache
---> 184385dc16fb
Step 3/19 : EXPOSE 5000
---> Using cache
---> 0e0cdd17e04d
Step 4/19 : ENV ASPNETCORE_URLS=http://+:5000
---> Using cache
---> 54cee58d679f
Step 5/19 : FROM microsoft/dotnet:2.2-sdk AS build
---> a4974ac66bfc
Step 6/19 : WORKDIR /src
---> Using cache
---> 7f9a2990f973
Step 7/19 : COPY ["BuySellApi.csproj", "./"]
---> Using cache
---> d526083ece6d
Step 8/19 : COPY ["BuySellApi.Data/BuySellApi.Data.csproj", "./"]
COPY failed: stat /mnt/sda1/var/lib/docker/tmp/docker-builder475321395/BuySellApi.Data/BuySellApi.Data.csproj: no such file or directory
Run Code Online (Sandbox Code Playgroud)
它不是复制数据和核心层。当我为单个项目的解决方案尝试同样的事情时,它工作正常。
Mih*_*hai 11
根据您的输入,我建议以下文件夹结构和 Dockerfile。
[Solution] 'BuySellApi' (3 Projects)
|
+-- Dockerfile
|
+-- [BuySellApi]
| |
| +--- BuySellApi.csproj
|
+-- [BuySellApi.Core]
| |
| +--- BuySellApi.Core.csproj
|
+-- [BuySellApi.Data]
|
+--- BuySellApi.Data.csproj
Run Code Online (Sandbox Code Playgroud)
文件
FROM microsoft/dotnet:2.2-aspnetcore-runtime AS base
WORKDIR /app
EXPOSE 5000
ENV ASPNETCORE_URLS=http://+:5000
FROM microsoft/dotnet:2.2-sdk AS build
WORKDIR /src
COPY . .
RUN dotnet restore ". BuySellApi/BuySellApi.csproj"
WORKDIR "/src/BuySellApi"
RUN dotnet build "BuySellApi.csproj" -c Release -o /app
FROM build AS publish
WORKDIR "/src/BuySellApi"
RUN dotnet publish "BuySellApi.csproj" -c Release -o /app
FROM base AS final
WORKDIR /app
COPY --from=publish /app .
ENTRYPOINT ["dotnet", "BuySellApi.dll", "--server.urls", "http://0.0.0.0:5000"]
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
7970 次 |
| 最近记录: |