0

您好,我正在遵循这篇博文“使用 Kubernetes 管理容器化 ASP.NET Core 应用程序”中的指导

https://cloudplatform.googleblog.com/2016/10/managing-containerized-ASP.NET-Core-apps-with-Kubernetes.html

我被困在让 docker 构建图像的阶段

docker build -t gcr.io/xxxx/hello-dotnet:v1 .

这是我得到的错误。

unable to process Dockerfile: unable to parse repository info: repository name component must match "[a-z0-9](?:-*[a-z0-9])*(?:[._][a-z0-9](?:-*[a-z0-9])*)*"

我的 Dockerfile 的内容是

FROM microsoft/dotnet:1:1.0.1-core
COPY . /app
WORKDIR /app
RUN ["dotnet", "restore"]
RUN ["dotnet", "build"]
EXPOSE 8080/tcp
ENV ASPNETCORE_URLS http://*:8080
ENTRYPOINT ["dotnet", "run"]
4

1 回答 1

1

你的第一行Dockerfile应该是:

FROM microsoft/dotnet:1.0.1-core
于 2016-10-14T03:29:55.387 回答