From 1d5a0859a8f3b2b964c7b21651987e71d4c76fea Mon Sep 17 00:00:00 2001 From: Lev Date: Thu, 24 Mar 2022 10:38:45 +0300 Subject: [PATCH] Add install-app script in final backend image (#729) --- images/worker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/worker/Dockerfile b/images/worker/Dockerfile index e85eaaf9..00013df9 100644 --- a/images/worker/Dockerfile +++ b/images/worker/Dockerfile @@ -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