FROM node:18
WORKDIR /usr/src/app
COPY ./frontend/output .
EXPOSE 3000
CMD [ "node", ".output/server/index.mjs" ]