Spaces:
Running
Running
File size: 301 Bytes
304687a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM python:3.10
# Install dependencies
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy project files
COPY . .
# Expose the port HF Spaces uses (7860)
EXPOSE 7860
# Run the server on port 7860
CMD ["python", "manage.py", "runserver", "0.0.0.0:7860"] |