45bce81
2e4a288
45bce81
2e4a288
393534e
45bce81
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | FROM ubuntu:latest
RUN mkdir -p /app && \
chmod 777 /app
COPY cursor /app/cursor-api
WORKDIR /app
ENV PORT=7860
USER root
RUN chmod +x /app/cursor-api
EXPOSE 7860
CMD ["/app/cursor-api"] |