1
0
mirror of https://github.com/ZeroCatDev/ClassworksKV.git synced 2025-07-05 06:49:22 +00:00
ClassworksKV/Dockerfile
2024-11-23 21:40:00 +08:00

7 lines
126 B
Docker

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