Spaces:
Paused
Paused
File size: 394 Bytes
1464413 dd3c6a7 1464413 dd3c6a7 1464413 dd3c6a7 1464413 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.14-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends git \
&& rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/Alishahryar1/free-claude-code.git .
RUN python -m pip install --upgrade pip \
&& pip install --no-cache-dir .
ENV PORT=7860
EXPOSE 7860
CMD ["sh", "-c", "uvicorn server:app --host 0.0.0.0 --port ${PORT:-7860}"] |