cursor / Dockerfile
Niansuh's picture
Update Dockerfile
c899506 verified
raw
history blame contribute delete
348 Bytes
FROM node:lts-alpine
EXPOSE 3000
ENV TZ=Asia/Shanghai
WORKDIR /app
RUN apk add git
RUN git clone https://github.com/Niansuh/cursor-api.git .
#ADD utils.js src/
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
CMD ["npm", "run", "start"]