FROM node:18

WORKDIR /usr/src/app

COPY ./frontend/.output .

EXPOSE 3000 

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