File size: 162 Bytes
579a015
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM node:21
WORKDIR /usr/src/app
COPY package*.json ./
RUN git clone https://github.com/Archeb/pplx-proxy.git
RUN npm install
COPY . .
CMD [ "node", "index.js" ]