Review the following Dockerfile code and flag the issue.
1FROM node:20 2 3WORKDIR /app 4 5COPY package*.json ./ 6RUN npm install 7 8COPY . . 9 10EXPOSE 3000 11CMD ["node", "server.js"]