FROM node:18-alpine
WORKDIR /usr/src/app
COPY bundle.js ./
EXPOSE 3000
CMD [ "node", "--enable-source-maps", "bundle.js" ]