FROM python:3.11-slim LABEL title="DeepSeek Proxy" LABEL description="OpenAI-compatible proxy for DeepSeek web chat" LABEL version="1.1.1" WORKDIR /app # Copy proxy code COPY app.py . COPY requirements.txt . # No pip install needed (pure stdlib), but requirements.txt keeps HF happy RUN pip install --no-cache-dir -r requirements.txt || true # HF Spaces default port EXPOSE 7860 # Run the proxy CMD ["python", "app.py"]