From c1711883fc36ac981ad0bb5961aca9ed24f1fe43 Mon Sep 17 00:00:00 2001 From: schooltechx Date: Tue, 11 Apr 2023 14:37:38 +0700 Subject: [PATCH] fix bug not copy static foler to image --- cms/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/cms/Dockerfile b/cms/Dockerfile index 2eb4cf3..b016a68 100644 --- a/cms/Dockerfile +++ b/cms/Dockerfile @@ -5,6 +5,7 @@ WORKDIR /app COPY *.json . COPY *.*s . RUN npm i +COPY static ./static COPY src ./src # RUN ls RUN npm run build