Spaces:
Sleeping
Sleeping
# Dockerfile | |
# Use a base image appropriate for your application | |
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9 | |
# Set working directory | |
WORKDIR /app | |
# Copy requirements.txt first for caching dependencies | |
COPY ./requirements.txt . | |
# Install dependencies | |
RUN pip install -r requirements.txt | |
# Copy the rest of the application code | |
COPY . . | |
# Create necessary directories and set permissions | |
RUN mkdir -p /app/static/uploads /app/static/results \ | |
&& chmod -R 777 /app/static/uploads /app/static/results | |
# Start the application | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |