-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDockerfile
22 lines (18 loc) · 841 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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:8.0-alpine AS base
WORKDIR /app
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build
WORKDIR /src
COPY ["Arashi.Aoi/Arashi.Aoi.csproj", "Arashi.Aoi/"]
RUN dotnet restore "Arashi.Aoi/Arashi.Aoi.csproj"
COPY . .
WORKDIR "/src/Arashi.Aoi"
RUN dotnet build "Arashi.Aoi.csproj" -c Release -o /app/build /p:PublishSingleFile=false /p:PublishTrimmed=false
FROM build AS publish
RUN dotnet publish "Arashi.Aoi.csproj" -c Release -o /app/publish /p:PublishSingleFile=false /p:PublishTrimmed=false
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
EXPOSE 2020
#ENTRYPOINT ["dotnet", "Arashi.Aoi.dll"]
CMD ASPNETCORE_URLS=http://*:$PORT dotnet Arashi.Aoi.dll