loc
Update Dockerfile
6b5697e verified
raw
history blame contribute delete
185 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" ]