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 \
hexo server -p 5000