mirror of
https://github.com/searxng/searxng.git
synced 2024-11-16 17:40:11 +01:00
[fix] docker 'Error compiling' and 'SyntaxError' messages
The make docker target spits out some SyntaxError. With this .dockerignore there is no more error. Explanation: - the python files are compiled while building the docker image - a node modules contains some python files - the python files inside the node module doesn't compile It raises the fact that node_modules were included in the docker image which should not happen. Same the local directory was included. Dockerfile builds searx in its own way (without virtualenv) Thanks @dalf: - https://github.com/asciimoo/searx/pull/1900#issuecomment-604892737 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
d7523071a0
commit
ec453e0239
@ -4,6 +4,9 @@
|
|||||||
*/*/*/*~
|
*/*/*/*~
|
||||||
*/*/*/*/*~
|
*/*/*/*/*~
|
||||||
|
|
||||||
|
#
|
||||||
|
local/
|
||||||
|
|
||||||
# Git
|
# Git
|
||||||
.git
|
.git
|
||||||
.gitignore
|
.gitignore
|
||||||
@ -36,6 +39,11 @@ robot_report.html
|
|||||||
test_basic/
|
test_basic/
|
||||||
setup.cfg
|
setup.cfg
|
||||||
|
|
||||||
|
# node_modules
|
||||||
node_modules/
|
node_modules/
|
||||||
|
*/node_modules/
|
||||||
|
*/*/node_modules/
|
||||||
|
*/*/*/node_modules/
|
||||||
|
*/*/*/*/node_modules/
|
||||||
|
|
||||||
.tx/
|
.tx/
|
Loading…
Reference in New Issue
Block a user