loc
Update Dockerfile
8cb0db1 verified
raw
history blame
183 Bytes
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" ]