Commit 83757f6f by shipengwei

Merge branch 'master' of git.aipark.com:eoc-group/dotnet-cicd-demo

parents c5070e41 abd674aa
......@@ -5,7 +5,6 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0-bookworm-slim AS base
USER $APP_UID
WORKDIR /app
EXPOSE 80
EXPOSE 443
# 此阶段用于生成服务项目
FROM mcr.microsoft.com/dotnet/sdk:8.0-bookworm-slim AS build
......
......@@ -8,7 +8,7 @@ namespace DotNetCicdDemo
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
//builder.WebHost.UseUrls("http://*");
builder.WebHost.UseUrls("http://*");
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment