-
-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2971 from timschumi/new-docker-dirs
Rewrite the .dockerignore file into a denylist
- Loading branch information
Showing
2 changed files
with
20 additions
and
14 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,15 +1,20 @@ | ||
# ignore every file | ||
* | ||
# Ignore all Git metadata and build output (in all directories). | ||
**/.git* | ||
**/bin/ | ||
**/obj/ | ||
|
||
# except for the ones required for building | ||
!i18n/ | ||
!prebuilts/ | ||
!TerrariaServerAPI/ | ||
!TShockAPI/ | ||
!TShockLauncher/ | ||
!TShockLauncher.Tests/ | ||
!TShock.sln | ||
|
||
# but exclude build artifacts | ||
*/bin/ | ||
*/obj/ | ||
# Ignore other specific files that aren't needed for the build itself. | ||
/.all-contributorsrc | ||
/.dockerignore | ||
/.editorconfig | ||
/.vscode | ||
/appveyor.yml | ||
/COPYING | ||
/crowdin.yml | ||
/Dockerfile | ||
/docs | ||
/README.md | ||
/README_cn.md | ||
/renovate.json | ||
/scripts | ||
/SECURITY.md |
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