Spaces:
Sleeping
Sleeping
File size: 274 Bytes
b72bfc8 0065332 b72bfc8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM node
RUN useradd -m -u 1001 user
ENV HOME=/home/user
ENV PATH=/home/user/.local/bin:$PATH
USER user
WORKDIR $HOME/app
RUN --mount=type=secret,id=URL,mode=0444,required=true \
git clone $(cat /run/secrets/URL) .
RUN npm install
CMD ["node", "backend/index.js"] |