my-code-server
FROM lscr.io/linuxserver/code-server:latest
RUN apt-get update \
&& apt install -y npm \
&& apt install -y git \
&& npm install -g n \
&& n latest \
&& npm install -g yarn \
ocer-world
FROM node:latest
RUN npm install -g hexo-cli \
&& git clone https://gitea.ocer.cc/overcast404/ocer-world.git \
&& cd ocer-world \
&& npm install
CMD cd ocer-world \
&& git pull \
&& npm install \
&& hexo server -p 5000
ocer-world-new
FROM node:latest
RUN npm install -g hexo-cli \
&& git clone https://gitea.ocer.cc/overcast404/ocer-world.git \
&& cd /ocer-world/land \
&& npm install
CMD cd ocer-world \
&& git pull \
&& cd land \
&& npm install \
&& hexo server -p 5000