diff --git a/src/Umbraco.Web.UI/Program.cs b/src/Umbraco.Web.UI/Program.cs index ad68d2835123..a9834ed78461 100644 --- a/src/Umbraco.Web.UI/Program.cs +++ b/src/Umbraco.Web.UI/Program.cs @@ -25,9 +25,6 @@ }) .WithEndpoints(u => { - /*#if (UmbracoRelease = 'LTS') - u.UseInstallerEndpoints(); - #endif */ u.UseBackOfficeEndpoints(); u.UseWebsiteEndpoints(); }); diff --git a/templates/UmbracoProject/.template.config/starterkits.template.json b/templates/UmbracoProject/.template.config/starterkits.template.json index 745eef20ae31..4dbb28c00571 100644 --- a/templates/UmbracoProject/.template.config/starterkits.template.json +++ b/templates/UmbracoProject/.template.config/starterkits.template.json @@ -34,11 +34,11 @@ "cases": [ { "condition": "(StarterKit == 'Umbraco.TheStarterKit' && (UmbracoRelease == 'Latest' || UmbracoRelease == 'Custom'))", - "value": "16.0.0" + "value": "17.0.0-rc" }, { "condition": "(StarterKit == 'Umbraco.TheStarterKit' && UmbracoRelease == 'LTS')", - "value": "13.0.0" + "value": "17.0.0" } ] } diff --git a/templates/UmbracoProject/Dockerfile b/templates/UmbracoProject/Dockerfile index 40347ec2ec84..9f2fcbe19311 100644 --- a/templates/UmbracoProject/Dockerfile +++ b/templates/UmbracoProject/Dockerfile @@ -26,8 +26,5 @@ USER root RUN mkdir umbraco RUN mkdir umbraco/Logs RUN chown $APP_UID umbraco --recursive -#if (UmbracoRelease = 'LTS') -RUN chown $APP_UID wwwroot/umbraco --recursive -#endif USER $APP_UID ENTRYPOINT ["dotnet", "UmbracoProject.dll"]