Whitespace it seems

This commit is contained in:
Joseph Ferano 2022-08-04 13:50:32 +07:00
parent 9e4a37baab
commit 3d1a863ab5
3 changed files with 11 additions and 12 deletions

View File

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