mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 07:06:32 +00:00
Initial commit
Made-with: Cursor
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user