FROM node:18 WORKDIR /app RUN --mount=type=secret,id=CLONE,mode=0444,required=true \ git clone $(cat /run/secrets/CLONE) . RUN npm install EXPOSE 7860 CMD [ "node", "server.js" ]