[Bugs] Can't Start Strapi - Need help - Emergency

Thanks for the quick reply. Strapi is working on my macbook but not working on local docker.

Platform: macbook m2
Node: v18.18.0
Yarn: 1.22.19
@strapi/plugin-cloud”: “4.16.2”,
@strapi/plugin-i18n”: “4.16.2”,
@strapi/plugin-users-permissions”: “4.16.2”,
@strapi/strapi”: “4.16.2”,

"[ERROR] Cannot start service: Host version “0.16.17” does not match binary version “0.19.2”

Docker File taken from Strapi documentation.

FROM node:18-alpine
# Installing libvips-dev for sharp Compatibility
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev nasm bash vips-dev git
ARG NODE_ENV=development
ENV NODE_ENV=${NODE_ENV}

WORKDIR /opt/
COPY package.json yarn.lock ./
RUN yarn global add node-gyp
RUN yarn config set network-timeout 600000 -g && yarn install
ENV PATH /opt/node_modules/.bin:$PATH

WORKDIR /opt/app
COPY . .
RUN chown -R node:node /opt/app
USER node
RUN ["yarn", "build"]
EXPOSE 1337
CMD ["yarn", "develop"]