Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
baihexc/R4
baihexc
/
R2
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
R2
/
Dockerfile
baihexc
Update Dockerfile
393534e
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
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"
]