zeno
Docker
Running Zeno in a container.
FROM
node:18
WORKDIR
/app
COPY
. .
RUN
npm
install
CMD
["npm", "start"]