Spaces:
Running
Running
File size: 404 Bytes
7b3af6e b82e3e8 7b3af6e 9f08c60 a36ca70 9f08c60 7b3af6e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM node:lts-alpine
EXPOSE 3000
ENV TZ=Asia/Shanghai
WORKDIR /app
RUN apk add git
RUN git clone https://github.com/zhx47/cursor-api.git .
RUN yarn config set registry https://registry.npmmirror.com/
RUN yarn
RUN sed -i 's/\/v1\/chat\/completions/\/proxies\/v1\/chat\/completions/g' src/index.js
RUN sed -i 's/toUpperCase();/toUpperCase();\n console.log(hexString);/g'
CMD ["npm", "run", "start"] |