diff --git a/.changeset/pretty-buttons-yawn.md b/.changeset/pretty-buttons-yawn.md new file mode 100644 index 000000000..a4466b4aa --- /dev/null +++ b/.changeset/pretty-buttons-yawn.md @@ -0,0 +1,6 @@ +--- +"@zhinjs/core": patch +"@zhinjs/adapter-kritor": patch +--- + +kritor适配 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..84b5bc13a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +# 镜像继承 +FROM node:18 +RUN mkdir /app +COPY ./test/package.json /app +WORKDIR /app +RUN npm init -y +RUN npm install +EXPOSE 8086 +CMD npm start