This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Program | |
| { | |
| public static void Main(string[] args) | |
| { | |
| CreateHostBuilder(args).Build().Run(); | |
| } | |
| public static IHostBuilder CreateHostBuilder(string[] args) | |
| { | |
| string port = Environment.GetEnvironmentVariable("PORT") ?? "8080"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Program | |
| { | |
| public static void Main(string[] args) | |
| { | |
| CreateHostBuilder(args).Build().Run(); | |
| } | |
| public static IHostBuilder CreateHostBuilder(string[] args) | |
| { | |
| string port = Environment.GetEnvironmentVariable("PORT") ?? "8080"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Use Microsoft's official build .NET image. | |
| # https://hub.docker.com/_/microsoft-dotnet-core-sdk/ | |
| FROM mcr.microsoft.com/dotnet/core/sdk:3.1-alpine AS build | |
| WORKDIR /app | |
| # Install production dependencies. | |
| # Copy csproj and restore as distinct layers. | |
| COPY *.csproj ./ | |
| RUN dotnet restore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * jquery.qtip. The jQuery tooltip plugin | |
| * | |
| * Copyright (c) 2009 Craig Thompson | |
| * http://craigsworks.com | |
| * | |
| * Licensed under MIT | |
| * http://www.opensource.org/licenses/mit-license.php | |
| * | |
| * Launch : February 2009 |