您好,我正在遵循这篇博文“使用 Kubernetes 管理容器化 ASP.NET Core 应用程序”中的指导
我被困在让 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"]