-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release CI - Perf adjustments (#7641)
- Loading branch information
Showing
6 changed files
with
43 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
#ignore all | ||
# ignore all | ||
** | ||
|
||
#except src for build | ||
# Except src for building | ||
!./src/* | ||
# TODO : Remove this line when Docker Buildkit works in Windows | ||
!/.build/release/* | ||
|
||
#ignore any App_Data folder | ||
# Ignore any App_Data folder | ||
**/App_Data/ | ||
|
||
#ignore all prebuild | ||
# Ignore all prebuild | ||
**/[b|B]in/ | ||
**/[O|o]bj/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# This Docker file is intended for the CI | ||
# A prerequisite is a published application in the .build/release | ||
|
||
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 | ||
|
||
EXPOSE 80 | ||
ENV ASPNETCORE_URLS http://+:80 | ||
WORKDIR /app | ||
COPY .build/release /app | ||
ENTRYPOINT ["dotnet", "OrchardCore.Cms.Web.dll"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Buildkit Only working in linux | ||
|
||
# Ignore all | ||
** | ||
|
||
# Except precompiled files | ||
!/.build/release/* |