quickstarts/tutorials/pub-sub/csharp-subscriber/Dockerfile

7 lines
207 B
Docker

# Note: we cannot do a staged dotnet docker build here for arm/arm64.
# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:7.0
WORKDIR /app
COPY /out .
ENTRYPOINT ["dotnet", "csharp-subscriber.dll"]