Try the expose

This commit is contained in:
Joseph Ferano 2022-07-21 14:32:07 +07:00
parent fab68a5d39
commit 489a39c06a

View File

@ -20,4 +20,5 @@ RUN dotnet publish "CurrencyAPI.fsproj" -c Release -o /app/publish --no-restore
FROM mcr.microsoft.com/dotnet/aspnet:6.0
WORKDIR /app
COPY --from=publish /app/publish .
EXPOSE 3333
ENTRYPOINT [ "dotnet", "./CurrencyAPI.App.dll" ]