-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
26 lines (22 loc) · 1.32 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#See https://aka.ms/containerfastmode to understand 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 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
WORKDIR /src
COPY ["OgretmenAtama/Presentation/OgretmenAtama.API/OgretmenAtama.API.csproj", "OgretmenAtama/Presentation/OgretmenAtama.API/"]
COPY ["OgretmenAtama/Infrastructure/OgretmenAtama.Persistance/OgretmenAtama.Persistance.csproj", "OgretmenAtama/Infrastructure/OgretmenAtama.Persistance/"]
COPY ["OgretmenAtama/Core/OgretmenAtama.Domain/OgretmenAtama.Domain.csproj", "OgretmenAtama/Core/OgretmenAtama.Domain/"]
COPY ["OgretmenAtama/Infrastructure/OgretmenAtama.Infrastructure/OgretmenAtama.Infrastructure.csproj", "OgretmenAtama/Infrastructure/OgretmenAtama.Infrastructure/"]
RUN dotnet restore "OgretmenAtama/Presentation/OgretmenAtama.API/OgretmenAtama.API.csproj"
COPY . .
WORKDIR "/src/OgretmenAtama/Presentation/OgretmenAtama.API"
RUN dotnet build "OgretmenAtama.API.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "OgretmenAtama.API.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
#ENTRYPOINT ["dotnet", "OgretmenAtama.API.dll"]
CMD ASPNETCORE_URLS=http://*:$PORT dotnet OgretmenAtama.API.dll