File size: 183 Bytes
038c358
 
 
 
2a1a788
 
038c358
8cb0db1
 
038c358
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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" ]