File size: 668 Bytes
a86a345
 
 
423f2bb
 
 
 
 
 
a86a345
 
 
 
 
 
 
 
423f2bb
a86a345
423f2bb
a86a345
 
 
 
423f2bb
b38308d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Base image
FROM python:3.10-slim

# Install necessary system libraries
RUN apt-get update && apt-get install -y \
    libgl1-mesa-glx \
    libglib2.0-0 \
    && rm -rf /var/lib/apt/lists/*

# Set working directory
WORKDIR /app

# Copy necessary files
COPY app.py /app/app.py
COPY best_yolov8m_model.pt /app/best_yolov8m_model.pt
COPY requirements.txt /app/requirements.txt

# Install required Python packages
RUN pip install --no-cache-dir --upgrade pip && \
    pip install --no-cache-dir -r requirements.txt

# Expose the port for the API
EXPOSE 8000

# Run FastAPI using Uvicorn
CMD ["python3", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]