git clone in Dockerfile must be recursive

This commit is contained in:
Fabio Manganiello 2019-12-02 01:03:33 +01:00
parent 93bb71bef7
commit 93a5ffc755
1 changed files with 1 additions and 1 deletions

View File

@ -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