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

8 lines
157 B
Docker

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