CoolFace
Apppublic

baihexc/R2

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile18 linesDownload Raw Back to root
1FROM ubuntu:latest2 3RUN mkdir -p /app && \4    chmod 777 /app5 6COPY cursor /app/cursor-api7 8WORKDIR /app9 10ENV PORT=786011 12USER root13 14RUN chmod +x /app/cursor-api15 16EXPOSE 786017 18CMD ["/app/cursor-api"]