I'm trying to create my first deploy on app engine, but when I run on google cloud cli:
"gcloud app deploy app.yml"
He ran the build but on the final is giving an error:
"
Updating service [default] (this may take several minutes)...failed.
ERROR: (gcloud.app.deploy) Error Response: [13] An internal error occurred while creating a Google Cloud Storage bucket.
"
I defined a custom runtime with my app.yml:
"
runtime: custom
env: flex
"
"
WORKDIR /app
WORKDIR /src
COPY ["-/-.csproj", "-/"]
COPY ["-.Core/-.Core.csproj", "-.Core/"]
RUN dotnet restore "-/-.csproj"
COPY . .
WORKDIR "/src/-"
RUN dotnet build "-.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "-.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
EXPOSE 8080
ENV ASPNETCORE_URLS=http://*:8080
ENTRYPOINT ["dotnet", "-.dll"]
"
Someone had the same issue ?