FROM node:18 WORKDIR /usr/src/app COPY bundle.js ./ EXPOSE 8080 CMD [ "node", "bundle.js" ]