FROM node:18-alpine COPY . /app WORKDIR /app EXPOSE 8080 RUN npm install; CMD node index.js