1
0
mirror of https://github.com/ZeroCatDev/Classworks.git synced 2025-07-04 18:39:22 +00:00
Classworks/Dockerfile
2024-11-23 21:39:01 +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"]