From 117de9d4b8d4ce16361cc0a10df00a5c7f121232 Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Tue, 5 Jan 2021 17:48:11 +0530 Subject: [PATCH] fix(erpnext-nginx): COPY path for install_app.sh --- build/erpnext-nginx/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/erpnext-nginx/Dockerfile b/build/erpnext-nginx/Dockerfile index 6394acaa..13f1c2de 100644 --- a/build/erpnext-nginx/Dockerfile +++ b/build/erpnext-nginx/Dockerfile @@ -3,7 +3,7 @@ ARG GIT_BRANCH=develop FROM node:${NODE_IMAGE_TAG} ARG GIT_BRANCH -COPY install_app.sh /install_app +COPY build/erpnext-nginx/install_app.sh /install_app RUN chmod +x /install_app && \ apt-get update -y && \ apt-get install build-essential git python2 -y && \