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;"