ci: Dockerfile now builds and runs the app
This commit is contained in:
parent
4d67602dbf
commit
eac3412caa
1 changed files with 10 additions and 7 deletions
17
Dockerfile
17
Dockerfile
|
|
@ -1,24 +1,27 @@
|
|||
# RUN WITH docker run -e "ASPNETCORE_URLS=http://+:80" -p 8080:80 turf-tasker-app
|
||||
# This is only temporary
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
||||
WORKDIR /src
|
||||
|
||||
COPY ["turf_tasker/turf_tasker.csproj", "turf_tasker/"]
|
||||
RUN dotnet restore "turf_tasker/turf_tasker.csproj"
|
||||
COPY ["turf_tasker.csproj", "./"]
|
||||
RUN dotnet restore "turf_tasker.csproj"
|
||||
|
||||
COPY . .
|
||||
|
||||
WORKDIR "/src/turf_tasker"
|
||||
WORKDIR "/src"
|
||||
|
||||
RUN dotnet build "turf_tasker.csproj" -c Release -o /app/build
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS publish
|
||||
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS publish
|
||||
WORKDIR /src
|
||||
|
||||
COPY --from=build "/src/turf_tasker/turf_tasker.csproj" "turf_tasker/"
|
||||
RUN dotnet restore "turf_tasker/turf_tasker.csproj"
|
||||
COPY --from=build "/src/turf_tasker.csproj" "./"
|
||||
RUN dotnet restore "turf_tasker.csproj"
|
||||
|
||||
COPY . .
|
||||
|
||||
WORKDIR "/src/turf_tasker"
|
||||
WORKDIR "/src"
|
||||
RUN dotnet publish "turf_tasker.csproj" -c Release -o /app/publish /p:UserAppHost=false
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS final
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue