cursor / Dockerfile
906051999
update
4b1bbe6
raw
history blame contribute delete
377 Bytes
FROM node:lts-alpine
EXPOSE 3000
ENV TZ=Asia/Shanghai
WORKDIR /app
RUN apk add git
RUN git clone https://github.com/906051999/cursor-api.git . && \
git pull origin main
ADD utils.js src/
RUN yarn config set registry https://registry.npmmirror.com/
RUN yarn
RUN sed -i 's/\/v1\/chat\/completions/\/proxy\/v1\/chat\/completions/g' src/index.js
CMD ["npm", "run", "start"]