From ce50524a5c482b185221c4ef9abaa756597eb9eb Mon Sep 17 00:00:00 2001 From: overcast404 Date: Sun, 25 Feb 2024 20:17:23 +0800 Subject: [PATCH] feat: Dockerfile. --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 12bf6c7..4237cd1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,11 @@ RUN apt-get update \ && apt-get install -y nginx \ && git clone https://gitea.ocer.cc/overcast404/ocer-cc.git \ && cd /ocer-cc \ -&& npm install +&& npm install \ +&& npm run build CMD cd /ocer-cc \ && git pull \ -&& npm run build - -CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file +&& npm run build \ +&& cp -rf /ocer-cc/dist/* /var/www/html \ +&& nginx -g "daemon off;"