cosmoEagle/leetcode-api
0
1FROM node:20-alpine2 3WORKDIR /usr/src/app4 5COPY package*.json ./6 7RUN npm install8 9COPY . .10 11# need to remove when we use dev command12# RUN npm run build 13 14EXPOSE 300015 16# CMD ["node", "dist/index.js"]17CMD ["npm", "run", "dev"]