First Commit

This commit is contained in:
Mike Nolan 2023-01-12 06:36:26 -06:00
parent c931085403
commit ecbf101c45
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ RUN dotnet publish "./tytdemail.csproj" -c release -o /app --no-restore
FROM mcr.microsoft.com/dotnet/aspnet:6.0-focal FROM mcr.microsoft.com/dotnet/aspnet:6.0-focal
WORKDIR /app WORKDIR /app
COPY --from=build /app ./ COPY --from=build /app ./
WORKDIR /config
EXPOSE 80 EXPOSE 80
ENTRYPOINT ["dotnet","tytdemail.dll"] ENTRYPOINT ["dotnet","/app/tytdemail.dll"]