diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-06-27 11:18:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-27 11:18:51 +0100 |
commit | b2d2617c0de61db4cf81336d21e17bccc832eb70 (patch) | |
tree | c80399c4c1760d6e17f7b3684c4271ce2631b4d3 /.dockerignore | |
parent | Merge pull request #5563 from matrix-org/rav/docker/data_dir (diff) | |
download | synapse-b2d2617c0de61db4cf81336d21e17bccc832eb70.tar.xz |
Reduce the amount of stuff we send in the docker context (#5564)
this makes docker builds a bit faster.
Diffstat (limited to '.dockerignore')
-rw-r--r-- | .dockerignore | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/.dockerignore b/.dockerignore index 3c3996eb4c..f6c638b0a2 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,9 +1,13 @@ -Dockerfile -.travis.yml -.gitignore -demo/etc -tox.ini -.git/* -.tox/* -debian/matrix-synapse/ -debian/matrix-synapse-*/ +# ignore everything by default +* + +# things to include +!docker +!scripts +!synapse +!MANIFEST.in +!README.rst +!setup.py +!synctl + +**/__pycache__ |