Only indent with spaces in django Dockerfile

This commit is contained in:
Bruno Alla 2021-02-23 20:36:52 +00:00
parent ff98d8f517
commit 483b636fcb
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ COPY --from=python-build-stage /usr/src/app/wheels /wheels
# use wheels to install python dependencies # use wheels to install python dependencies
RUN pip install --no-cache /wheels/* \ RUN pip install --no-cache /wheels/* \
&& rm -rf /wheels && rm -rf /wheels
WORKDIR /app WORKDIR /app

View File

@ -85,7 +85,7 @@ COPY --from=python-build-stage /usr/src/app/wheels /wheels
# use wheels to install python dependencies # use wheels to install python dependencies
RUN pip install --no-cache /wheels/* \ RUN pip install --no-cache /wheels/* \
&& rm -rf /wheels && rm -rf /wheels
{%- if cookiecutter.js_task_runner == 'Gulp' %} {%- if cookiecutter.js_task_runner == 'Gulp' %}
COPY --from=client-builder --chown=django:django /app /app COPY --from=client-builder --chown=django:django /app /app