From 909695e070bd311f2e24570ec7522398a5560e1e Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Mon, 2 Dec 2019 00:43:37 +0100 Subject: [PATCH] git clones to /app/platypush --- 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 bd20e2a766..875a1d812e 100755 --- a/platypush/platydock/__init__.py +++ b/platypush/platydock/__init__.py @@ -97,7 +97,7 @@ def generate_dockerfile(deps, ports, cfgfile, devdir, python_version): content += textwrap.dedent( ''' - RUN git clone https://github.com/BlackLight/platypush.git /app && cd /app + RUN git clone https://github.com/BlackLight/platypush.git /app && cd /app/platypush RUN pip install -r requirements.txt && python setup.py build install RUN apk del git && apk del build-base