You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
Docker
37 lines
1.3 KiB
Docker
##See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
|
|
#FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
|
|
#WORKDIR /app
|
|
#EXPOSE 10010
|
|
#
|
|
#COPY . .
|
|
#ENV ASPNETCORE_URLS=http://+:10010
|
|
#ENTRYPOINT ["dotnet", "/app/OpenAuth.WebApi.dll"]
|
|
|
|
|
|
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
|
|
WORKDIR /app
|
|
EXPOSE 10010
|
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
|
|
WORKDIR /src
|
|
COPY ["OpenAuth.WebApi/OpenAuth.WebApi.csproj", "OpenAuth.WebApi/"]
|
|
COPY ["Infrastructure/Infrastructure.csproj", "Infrastructure/"]
|
|
COPY ["OpenAuth.App/OpenAuth.App.csproj", "OpenAuth.App/"]
|
|
COPY ["OpenAuth.Repository/OpenAuth.Repository.csproj", "OpenAuth.Repository/"]
|
|
RUN dotnet restore "OpenAuth.WebApi/OpenAuth.WebApi.csproj"
|
|
COPY . .
|
|
WORKDIR "/src/OpenAuth.WebApi"
|
|
RUN dotnet build "OpenAuth.WebApi.csproj" -c Release -o /app/build
|
|
|
|
FROM build AS publish
|
|
RUN dotnet publish "OpenAuth.WebApi.csproj" -c Release -o /app/publish /p:UseAppHost=false
|
|
|
|
FROM base AS final
|
|
WORKDIR /app
|
|
COPY --from=publish /app/publish .
|
|
ENV ASPNETCORE_URLS=http://+:10010
|
|
ENTRYPOINT ["dotnet", "OpenAuth.WebApi.dll"]
|
|
|