# # SPDX-FileCopyrightText: Hadad # SPDX-License-Identifier: Apache-2.0 # FROM node:latest WORKDIR /app COPY . . RUN npm install EXPOSE 3000 CMD ["npm", "start"]