1
0
mirror of https://github.com/ZeroCatDev/ClassworksKV.git synced 2025-07-02 04:39:23 +00:00
This commit is contained in:
孙悟元 2024-11-23 21:40:00 +08:00
parent 4afbec00cd
commit b82175288e

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:alpine
LABEL author=wuyuan
COPY . /
RUN npm install
EXPOSE 3000
CMD ["sh", "-c", "npm run prisma && npm run start"]