FROM node:22-bullseye

WORKDIR /opt/frontend
 
COPY frontend .
RUN npm i

EXPOSE 3000
CMD ["npm", "run", "start"]