DirectEd-AI-LoRA-API / Dockerfile
rayymaxx's picture
Add application file
cce707f
raw
history blame
307 Bytes
# Use Python 3.12
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Copy files
COPY . .
# Install dependencies
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# Expose FastAPI port
EXPOSE 7860
# Run FastAPI
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]