Spaces:
Sleeping
Sleeping
FROM python:3.10-alpine | |
# Install git and ffmpeg using apk (Alpine's package manager) | |
RUN apk add --no-cache git ffmpeg | |
# Create non-root user | |
RUN adduser -D -u 1000 user | |
ENV HOME=/home/user | |
USER user | |
WORKDIR /app | |
# Receive Git URL from build argument | |
RUN git clone https://github.com/viratxd/deepseek2api.git . | |
# Set up virtual environment and dependencies | |
RUN python -m venv shared_venv && \ | |
shared_venv/bin/pip install --upgrade pip && \ | |
shared_venv/bin/pip install --no-cache-dir -r requirements.txt && \ | |
shared_venv/bin/pip install --no-cache-dir numpy && \ | |
shared_venv/bin/python -m pip list > /app/pip_list.txt | |
EXPOSE 7860 | |
CMD ["shared_venv/bin/python", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |