From af31c6c55ff315dd234d2a57a8e37bb7fc550b1d Mon Sep 17 00:00:00 2001 From: Lev Vereshchagin Date: Wed, 22 Dec 2021 15:43:17 +0300 Subject: [PATCH] Fix .build creation on develop branch --- build/nginx/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/nginx/Dockerfile b/build/nginx/Dockerfile index 6d116805..9c6a2cd0 100644 --- a/build/nginx/Dockerfile +++ b/build/nginx/Dockerfile @@ -37,8 +37,8 @@ RUN cd apps/frappe && \ RUN echo "frappe" >sites/apps.txt \ && yarn --cwd apps/frappe run production \ && rm sites/apps.txt \ - # TODO: Currently `yarn run production` doesn't create .build: https://github.com/frappe/frappe/issues/15396 - && if [ ! -f sites/.build ]; then touch .build; fi + # TODO: Currently `yarn run production` doesn't create .build on develop branch: https://github.com/frappe/frappe/issues/15396 + && if [ ! -f sites/.build ]; then touch sites/.build; fi