Skip to content

Commit a4d2e2a

Browse files
committed
Merge branch 'develop' of https://github.com/sensenet/sn-taskmanagement into develop
2 parents 1b4998c + fb8e7df commit a4d2e2a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

src/SenseNetTaskAgent/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
22
WORKDIR /app
33

4-
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
4+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
55
WORKDIR /src
66
COPY . .
7-
RUN dotnet restore "TaskManagement.sln"
87
WORKDIR "/src/SenseNetTaskAgent"
8+
RUN dotnet restore "SenseNetTaskAgent.csproj"
99
RUN dotnet build "SenseNetTaskAgent.csproj" -c Release -o /app/build
1010

1111
FROM build AS publish

src/TaskManagementWeb.SNaaS/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
22
WORKDIR /app
33
EXPOSE 80
44
EXPOSE 443
55

6-
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
6+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
77
WORKDIR /src
88
COPY . .
9-
RUN dotnet restore "TaskManagement.sln"
109
WORKDIR "/src/TaskManagementWeb.SNaaS"
10+
RUN dotnet restore "TaskManagement.Web.SNaaS.csproj"
1111
RUN dotnet build "TaskManagement.Web.SNaaS.csproj" -c Release -o /app/build
1212

1313
FROM build AS publish

src/TaskManagementWeb/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
22
WORKDIR /app
33
EXPOSE 80
44
EXPOSE 443
55

6-
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
6+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
77
WORKDIR /src
88
COPY . .
9-
RUN dotnet restore "TaskManagement.sln"
109
WORKDIR "/src/TaskManagementWeb"
10+
RUN dotnet restore "TaskManagement.Web.csproj"
1111
RUN dotnet build "TaskManagement.Web.csproj" -c Release -o /app/build
1212

1313
FROM build AS publish

src/TestExecutor/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ ARG TASKAGENT_VERSION=latest
22
FROM sensenetcsp/sn-taskagent:${TASKAGENT_VERSION} AS base
33
WORKDIR /app
44

5-
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
5+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
66
WORKDIR /src
77
COPY . .
8-
RUN dotnet restore "TestExecutor/TestExecutor.csproj"
98
WORKDIR "/src/TestExecutor"
9+
RUN dotnet restore "TestExecutor.csproj"
1010
RUN dotnet build "TestExecutor.csproj" -c Release -o /app/build
1111

1212
FROM build AS publish

0 commit comments

Comments
 (0)