Add install-app script in final backend image

This commit is contained in:
Lev Vereshchagin 2022-03-24 10:19:42 +03:00
parent ceab853dab
commit ca7886a4ae

View file

@ -19,6 +19,8 @@ RUN pip install -U pip wheel \
&& python -m venv env \
&& env/bin/pip install -U pip wheel
COPY install-app.sh /usr/local/bin/install-app
FROM base as build_deps
@ -36,8 +38,6 @@ RUN apt-get update \
make \
&& rm -rf /var/lib/apt/lists/*
COPY install-app.sh /usr/local/bin/install-app
FROM build_deps as frappe_builder