-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
41 lines (32 loc) · 949 Bytes
/
Dockerfile
File metadata and controls
41 lines (32 loc) · 949 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# =========================
# Dockerfile for Helmet Detection API
# =========================
# Use official Python 3.10 slim image
FROM python:3.10-slim
# Set working directory inside container
WORKDIR /app
# Install system dependencies required for OpenCV and other libraries
RUN apt-get update && apt-get install -y \
build-essential \
cmake \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender1 \
libgl1 \
wget \
git \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for caching
COPY requirements.txt .
# Upgrade pip and install Python dependencies
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the app code
COPY . .
# Create folders for uploads and results
RUN mkdir -p uploads results
# Expose port for FastAPI
EXPOSE 8000
# Run FastAPI app with uvicorn
CMD ["uvicorn", "app.app:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]