mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-29 21:14:03 +03:00
Fixed Typo with python build stage name that was references incorrectly in the run stage
This commit is contained in:
parent
a795086b10
commit
17e577c924
|
@ -63,8 +63,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
|
||||||
|
|
||||||
|
|
||||||
# copy python dependencies from python-build-stage
|
# copy python dependencies from python-build-stage
|
||||||
COPY --from=build_stage /usr/local/lib/python3.8/site-packages/ /usr/local/lib/python3.8/site-packages/
|
COPY --from=python-build-stage /usr/local/lib/python3.8/site-packages/ /usr/local/lib/python3.8/site-packages/
|
||||||
COPY --from=build_stage /usr/local/bin/ /usr/local/bin/
|
COPY --from=python-build-stage /usr/local/bin/ /usr/local/bin/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -78,8 +78,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
|
||||||
|
|
||||||
|
|
||||||
# copy python dependencies from python-build-stage
|
# copy python dependencies from python-build-stage
|
||||||
COPY --from=build_stage /usr/local/lib/python3.8/site-packages/ /usr/local/lib/python3.8/site-packages/
|
COPY --from=python-build-stage /usr/local/lib/python3.8/site-packages/ /usr/local/lib/python3.8/site-packages/
|
||||||
COPY --from=build_stage /usr/local/bin/ /usr/local/bin/
|
COPY --from=python-build-stage /usr/local/bin/ /usr/local/bin/
|
||||||
|
|
||||||
{%- 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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user