We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eec5bfb commit 470ac09Copy full SHA for 470ac09
src/MalwareSampleExchange.Console/Dockerfile
@@ -4,6 +4,8 @@ WORKDIR /data
4
5
ENTRYPOINT dotnet /data/MalwareSampleExchange.Console.dll
6
7
+ENV ASPNETCORE_URLS="http://0.0.0.0:8080"
8
+
9
LABEL org.opencontainers.image.title="Malware Sample Exchange (MSE) Image" \
10
org.opencontainers.image.description="Malware Sample Exchange (MSE)" \
11
org.opencontainers.image.url="https://github.com/GDATASoftwareAG/mse" \
src/MalwareSampleExchange.Console/Program.cs
@@ -18,6 +18,5 @@ await Host.CreateDefaultBuilder(args)
18
{
19
builder.UseStartup<Startup>();
20
builder.UseKestrel();
21
- builder.UseUrls("http://0.0.0.0:8080");
22
})
23
.RunConsoleAsync();
0 commit comments