FROM node:22-slim LABEL authors="codedsakura" WORKDIR /app COPY . . RUN yarn install ENV PORT=80 ENTRYPOINT ["yarn", "run", "start"] EXPOSE 80