FROM node:18-alpine

WORKDIR /usr/src/app

COPY .output .

EXPOSE 3000 

CMD [ "node", "server/index.mjs" ]