From 6e4cc3a17425e227ed90d8936a40f7593b5358a4 Mon Sep 17 00:00:00 2001 From: qinluhe Date: Thu, 4 Jul 2024 12:17:14 +0800 Subject: [PATCH] chore: modified Dockerfile --- frontend/appflowy_web_app/deploy/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/appflowy_web_app/deploy/Dockerfile b/frontend/appflowy_web_app/deploy/Dockerfile index 556f78b33f..85f9d33b28 100644 --- a/frontend/appflowy_web_app/deploy/Dockerfile +++ b/frontend/appflowy_web_app/deploy/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && \ RUN bun install cheerio pino pino-pretty -COPY .. . +COPY . . COPY supervisord.conf /app/supervisord.conf @@ -17,7 +17,7 @@ RUN addgroup --system nginx && \ RUN apt-get clean && rm -rf /var/lib/apt/lists/* -COPY ../dist /usr/share/nginx/html/ +COPY dist /usr/share/nginx/html/ COPY nginx.conf /etc/nginx/nginx.conf