File size: 196 Bytes
38f09ce
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM node:18

USER node

RUN --mount=type=secret,id=GIT_REPO,mode=0444,required=true \
  git clone $(cat /run/secrets/GIT_REPO)

WORKDIR /rewards

RUN npm install

RUN npm run build

RUN npm start