Skip to content

Commit

Permalink
chore(deps) Update mcr.microsoft.com/dotnet/sdk Docker tag to v9
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 9, 2024
1 parent 1cabb1a commit b032f83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ stages:
- publish

precommit:
image: mcr.microsoft.com/dotnet/sdk:8.0-alpine
image: mcr.microsoft.com/dotnet/sdk:9.0-alpine
stage: test
except:
- public
Expand All @@ -40,7 +40,7 @@ precommit:
- pre-commit run stylelint --all-files

build_web:
image: mcr.microsoft.com/dotnet/sdk:8.0-alpine
image: mcr.microsoft.com/dotnet/sdk:9.0-alpine
stage: build
except:
- public
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# to access webapp
# http://localhost:1234

FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1

WORKDIR /app
Expand Down Expand Up @@ -43,7 +43,7 @@ RUN export PATH="$PATH:/root/.dotnet/tools" && dotnet ef database update --proj

RUN dotnet publish -c Release -o out web.csproj

FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
WORKDIR /app
COPY --from=build ["/app/web/out", "./"]
Expand Down

0 comments on commit b032f83

Please sign in to comment.