R2 / Dockerfile
baihexc's picture
Update Dockerfile
393534e verified
raw
history blame contribute delete
198 Bytes
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"]