forked from radeklat/todoist-habitica-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dockerignore
52 lines (51 loc) · 822 Bytes
/
.dockerignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
**/__pycache__
*.py[cod]
*$py.class
pip-log.txt
pip-delete-this-directory.txt
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
cover/
.hypothesis/
.pytest_cache/
.env*
.venv*
.mypy_cache/
.idea
.pylintrc
.dockerignore
.gitignore
Dockerfile
README.md
*_test_results.xml
test.sh
requirements-test.txt
CHANGELOG.md
.testrc
tests/
documentation/
.github/
.pre-commit-config.yaml
.run
**/.pylintrc
**/.todoist-sync
.python-version
.circleci
**/sync_cache.json
.git
tasks
## Check list of included files with:
#docker image build -t build-context -f - . <<EOF
#FROM busybox
#COPY . /build-context
#WORKDIR /build-context
#CMD find . | sed 's/^.\///' | grep -v '^\.$'
#EOF
#docker container run --rm build-context
## (from https://stackoverflow.com/questions/38946683/how-to-test-dockerignore-file)