From 93a5ffc755e85d0bf2624d684744b0bb88e9e22f Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 2 Dec 2019 01:03:33 +0100 Subject: [PATCH] git clone in Dockerfile must be recursive --- platypush/platydock/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/platydock/__init__.py b/platypush/platydock/__init__.py index f68e502982..034d30ee1f 100755 --- a/platypush/platydock/__init__.py +++ b/platypush/platydock/__init__.py @@ -100,7 +100,7 @@ def generate_dockerfile(deps, ports, cfgfile, devdir, python_version): content += textwrap.dedent( ''' - RUN git clone https://github.com/BlackLight/platypush.git /app \\ + RUN git clone --recursive https://github.com/BlackLight/platypush.git /app \\ && cd /app \\ && pip install -r requirements.txt \\ && python setup.py build install