Forgotten newlines

This commit is contained in:
Fabio Manganiello 2019-12-02 01:13:57 +01:00
parent e9df6768f9
commit a1f3ff3ae5
1 changed files with 2 additions and 2 deletions

View File

@ -111,8 +111,8 @@ def generate_dockerfile(deps, ports, cfgfile, devdir, python_version):
&& apk del libjpeg-turbo-dev \\
&& apk del zlib-dev
RUN cat <<EOF > /app/platypush-start.sh
cd /app && python -m platypush
RUN cat <<EOF > /app/platypush-start.sh \\
cd /app && python -m platypush \\
EOF
RUN chmod 0755 /app/platypush-start.sh