You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
I have a containerized ASP.NET Core 2.1 Web API with the following Dockerfile:
FROM microsoft/dotnet:2.1-sdk-alpine AS build
# Set working directory within containerWORKDIR /app
# Copy filesCOPY ./src .
# Restore dependenciesRUN dotnet restore
# Build appRUN dotnet publish -c Release -o dist
# Build runtime imageFROM microsoft/dotnet:2.1-aspnetcore-runtime-alpine AS runtime
COPY --from=build /app/dist .
ENTRYPOINT ["dotnet", "demo-netcore-api.dll"]
I need to update the TaskDefinition of service.yaml, but I need an example of the ContainerDefinitions section. Would you be able to tell me where I could find one?
Thanks.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have a containerized ASP.NET Core 2.1 Web API with the following Dockerfile:
I need to update the
TaskDefinition
of service.yaml, but I need an example of theContainerDefinitions
section. Would you be able to tell me where I could find one?Thanks.
The text was updated successfully, but these errors were encountered: