manim / Dockerfile
tommy24's picture
Create Dockerfile
74e33e5 verified
raw
history blame
228 Bytes
FROM python:3.9
# Install dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt
# Copy project files
COPY . /app
WORKDIR /app
# Run FastAPI
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]