Fixed Typo with python build stage name that was references incorrectly in the run stage

This commit is contained in:
Arnav Choudhury 2020-09-12 11:11:19 +05:30
parent a795086b10
commit 17e577c924
2 changed files with 4 additions and 4 deletions

View File

@ -63,8 +63,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
# 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=build_stage /usr/local/bin/ /usr/local/bin/
COPY --from=python-build-stage /usr/local/lib/python3.8/site-packages/ /usr/local/lib/python3.8/site-packages/
COPY --from=python-build-stage /usr/local/bin/ /usr/local/bin/

View File

@ -78,8 +78,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
# 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=build_stage /usr/local/bin/ /usr/local/bin/
COPY --from=python-build-stage /usr/local/lib/python3.8/site-packages/ /usr/local/lib/python3.8/site-packages/
COPY --from=python-build-stage /usr/local/bin/ /usr/local/bin/
{%- if cookiecutter.js_task_runner == 'Gulp' %}
COPY --from=client-builder --chown=django:django /app /app