cursor / Dockerfile
wIK5Ez2o's picture
Update Dockerfile
b82e3e8 verified
raw
history blame
240 Bytes
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
CMD ["npm", "run", "start"]