rewards / Dockerfile
Hritik R
Update Dockerfile
7331ac7 unverified
raw
history blame
192 Bytes
FROM node:18
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
CMD ["npm", "start"]