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

WORKDIR /app

RUN git clone https://$PAT@github.com/locmaymo/proxy.git .

EXPOSE 7860

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