From a3e389c3901b568e99738f164a44a1c8738fa2bc Mon Sep 17 00:00:00 2001 From: Shihaam Abdul Rahman Date: Sun, 9 Apr 2023 20:49:56 +0500 Subject: [PATCH] clear cache when youre done with the thing --- .build/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.build/Dockerfile b/.build/Dockerfile index 630f59a..277a83a 100644 --- a/.build/Dockerfile +++ b/.build/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /root COPY . . RUN yarn install \ - && rm -rf /usr/local/share/.cache \ - && yarn build + && yarn build \ + && rm -rf /usr/local/share/.cache CMD yarn start