Skip to content

Commit

Permalink
Update .dockerignore to match .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriktsarpalis committed Nov 20, 2019
1 parent 54bf87c commit b6d4aa9
Showing 1 changed file with 69 additions and 8 deletions.
77 changes: 69 additions & 8 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
**/[Dd]ebugPublic/
**/[Rr]elease/
**/[Rr]eleases/
**/build/
**/bld/
**/[Bb]in/
**/[Oo]bj/
Expand All @@ -42,6 +41,9 @@
# Visual Studio
**/.vs/

# Ionide
**/.ionide/

# MSTest test Results
**/[Tt]est[Rr]esult*/
**/[Bb]uild[Ll]og.*
Expand Down Expand Up @@ -142,23 +144,21 @@
**/DocProject/Help/Html2
**/DocProject/Help/html

# Click-Once directory
**/publish/

# Publish Web Output
**/*.[Pp]ublish.xml
**/*.azurePubxml
**/*.pubxml
**/*.publishproj

# NuGet Packages
**/*.nuget.props
**/*.nuget.targets
**/*.nupkg
**/*.nuget.g.props
**/*.nuget.g.targets
**/*.nuget.cache
**/**/packages/*

# NuGet package restore lockfiles
**/project.lock.json
**/project.assets.json
**/*.nuget.dgspec.json

# Windows Azure Build Output
**/csx/
Expand Down Expand Up @@ -204,6 +204,12 @@
# Microsoft Fakes
**/FakesAssemblies/

# C/C++ extension for Visual Studio Code
**/browse.VC.db
# Local settings folder for Visual Studio Code
**/**/.vscode/**
!**/**/.vscode/c_cpp_properties.json

### MonoDevelop ###

**/*.pidb
Expand Down Expand Up @@ -277,3 +283,58 @@

# VS debug support files
**/launchSettings.json

# Snapcraft files
**/.snapcraft
**/*.snap
**/parts/
**/prime/
**/stage/

# CLR prebuilt generated files
!**/src/pal/prebuilt/idl/*_i.c

# Valid 'debug' folder, that contains CLR debugging code
!**/src/debug

# Ignore folders created by the CLR test build
**/TestWrappers_x64_[d|D]ebug
**/TestWrappers_x64_[c|C]hecked
**/TestWrappers_x64_[r|R]elease
**/TestWrappers_x86_[d|D]ebug
**/TestWrappers_x86_[c|C]hecked
**/TestWrappers_x86_[r|R]elease
**/TestWrappers_arm_[d|D]ebug
**/TestWrappers_arm_[c|C]hecked
**/TestWrappers_arm_[r|R]elease
**/TestWrappers_arm64_[d|D]ebug
**/TestWrappers_arm64_[c|C]hecked
**/TestWrappers_arm64_[r|R]elease
**/tests/src/common/test_runtime/project.json

**/Vagrantfile
**/.vagrant

# CMake files
**/CMakeFiles/
**/cmake_install.cmake
**/CMakeCache.txt
**/Makefile

# Cross compilation
**/cross/rootfs/*
**/cross/android-rootfs/*
# add x86 as it is ignored in 'Build results'
!**/cross/x86

#python import files
**/*.pyc

# JIT32 files
**/src/jit32

# performance testing sandbox
**/sandbox

#IL linker for testing
**/linker

0 comments on commit b6d4aa9

Please sign in to comment.