Speed up django image build process, and reduce its size (#2353)

Speed up django image build process, and reduce its size
This commit is contained in:
Bruno Alla 2020-01-11 13:40:06 +00:00 committed by GitHub
commit 9fa80f80c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,13 +57,11 @@ RUN chmod +x /start-flower
{%- endif %}
{%- if cookiecutter.js_task_runner == 'Gulp' %}
COPY --from=client-builder /app /app
COPY --from=client-builder --chown=django:django /app /app
{% else %}
COPY . /app
COPY --chown=django:django . /app
{%- endif %}
RUN chown -R django /app
USER django
WORKDIR /app