1
0
mirror of https://github.com/ZeroCatDev/ClassworksKV.git synced 2025-07-02 04:39:23 +00:00
ClassworksKV/Dockerfile
SunWuyuan 6cca2de64f
1
2025-02-23 14:55:19 +08:00

7 lines
133 B
Docker

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