mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 10:56:32 +00:00
0625cd4157
Made-with: Cursor
11 lines
245 B
Docker
11 lines
245 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
|
|
WORKDIR /src
|
|
COPY . .
|
|
RUN dotnet publish -c Release -o /app
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:10.0
|
|
WORKDIR /app
|
|
COPY --from=build /app .
|
|
EXPOSE 8080
|
|
ENTRYPOINT ["dotnet", "Azaion.Flights.dll"]
|