File size: 147 Bytes
038c358
 
 
 
3941a98
038c358
 
 
 
1
2
3
4
5
6
7
8
9
FROM node:18

WORKDIR /app

RUN git clone https://$(cat /run/secrets/PAT)@github.com/locmaymo/proxy.git .

EXPOSE 7860

CMD [ "node", "server.js" ]