diff options
author | crupest <crupest@outlook.com> | 2020-06-02 19:07:27 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-02 19:07:27 +0800 |
commit | 25bc15ab02b89d913772409a752cdfe40f70e4c3 (patch) | |
tree | 9d433f9a9b8ccea4e23601bd0415aa88bd9e77ed /Dockerfile | |
parent | e90546391cc784ba9a0b0252590ec0f4d91cca68 (diff) | |
download | timeline-25bc15ab02b89d913772409a752cdfe40f70e4c3.tar.gz timeline-25bc15ab02b89d913772409a752cdfe40f70e4c3.tar.bz2 timeline-25bc15ab02b89d913772409a752cdfe40f70e4c3.zip |
fix: not recognize forwarded https protocal.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5,5 +5,6 @@ RUN dotnet publish Timeline/Timeline.csproj --configuration Release --output ./T FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 WORKDIR /app +ENV ASPNETCORE_FORWARDEDHEADERS_ENABLED true COPY --from=build /timeline-app/Timeline/publish . ENTRYPOINT ["dotnet", "Timeline.dll"] |