FROM node:22-slim RUN apt update && apt install -y git && apt clean COPY --chown=node:node . /fediblock-instance USER node RUN yarn config set network-timeout 300000 WORKDIR /fediblock-instance/front RUN yarn WORKDIR /fediblock-instance/back RUN yarn && yarn build EXPOSE 4000 ENTRYPOINT ["yarn", "start"]