loc
Update Dockerfile
2a1a788 verified
raw
history blame
166 Bytes
FROM node:18
WORKDIR /app
RUN --mount=type=secret,id=CLONE,mode=0444,required=true \
git clone $(cat /run/secrets/CLONE)
EXPOSE 7860
CMD [ "node", "server.js" ]