Skip to content

Commit 03eb878

Browse files
authoredDec 10, 2024··
V15: Fix docker (#17722)
* Bump dotnet version * Ensure LF line endings for shell scripts
1 parent e757b90 commit 03eb878

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
*.xml text=auto
4747
*.resx text=auto
4848
*.yml text eol=lf core.whitespace whitespace=tab-in-indent,trailing-space,tabwidth=2
49+
*.sh eol=lf
4950

5051
*.csproj text=auto merge=union
5152
*.vbproj text=auto merge=union

‎templates/UmbracoProject/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
22
USER $APP_UID
33
WORKDIR /app
44
EXPOSE 8080
55
EXPOSE 8081
66

7-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
7+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
88
ARG BUILD_CONFIGURATION=Release
99
WORKDIR /src
1010
COPY ["UmbracoProject/UmbracoProject.csproj", "UmbracoProject/"]

0 commit comments

Comments
 (0)
Please sign in to comment.