FROM node:22-bullseye WORKDIR /opt/mcserver COPY . . RUN npm i EXPOSE 3000 ENTRYPOINT ["node", "./src/index.js"]