FROM node:18 RUN apt-get update && apt-get install -y git WORKDIR /chat RUN --mount=type=secret,id=eeee git clone $(cat /run/secrets/eeee) . COPY . . RUN npm install CMD ["npm", "run", "start"]