feat: Dockerfile.

This commit is contained in:
吴阴天 2024-02-25 20:17:23 +08:00
parent c0a4f536b2
commit ce50524a5c

View File

@ -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;"]
&& npm run build \
&& cp -rf /ocer-cc/dist/* /var/www/html \
&& nginx -g "daemon off;"