pplx-proxy / Dockerfile
tang-x's picture
Update Dockerfile
579a015 verified
raw
history blame contribute delete
162 Bytes
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" ]