File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ stages:
13
13
- publish
14
14
15
15
precommit :
16
- image : mcr.microsoft.com/dotnet/sdk:8 .0-alpine
16
+ image : mcr.microsoft.com/dotnet/sdk:9 .0-alpine
17
17
stage : test
18
18
except :
19
19
- public
@@ -40,7 +40,7 @@ precommit:
40
40
- pre-commit run stylelint --all-files
41
41
42
42
build_web :
43
- image : mcr.microsoft.com/dotnet/sdk:8 .0-alpine
43
+ image : mcr.microsoft.com/dotnet/sdk:9 .0-alpine
44
44
stage : build
45
45
except :
46
46
- public
Original file line number Diff line number Diff line change 10
10
# to access webapp
11
11
# http://localhost:1234
12
12
13
- FROM mcr.microsoft.com/dotnet/sdk:8 .0-alpine AS build
13
+ FROM mcr.microsoft.com/dotnet/sdk:9 .0-alpine AS build
14
14
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
15
15
16
16
WORKDIR /app
@@ -43,7 +43,7 @@ RUN export PATH="$PATH:/root/.dotnet/tools" && dotnet ef database update --proj
43
43
44
44
RUN dotnet publish -c Release -o out web.csproj
45
45
46
- FROM mcr.microsoft.com/dotnet/sdk:8 .0-alpine
46
+ FROM mcr.microsoft.com/dotnet/sdk:9 .0-alpine
47
47
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
48
48
WORKDIR /app
49
49
COPY --from=build ["/app/web/out" , "./" ]
You can’t perform that action at this time.
0 commit comments