CoolFace
Apppublic

servionn-model/servionn-deepseek-coder

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5# Install dependencies6COPY requirements.txt .7RUN pip install --no-cache-dir -r requirements.txt8 9# Copy application10COPY app.py .11 12# HF Spaces expects port 7860 by default13ENV PORT=786014 15EXPOSE 786016 17CMD ["python", "app.py"]18 19