File size: 606 Bytes
54d88d7
b0de8e6
93da0bc
fb895c7
93da0bc
 
 
 
fb895c7
93da0bc
7286714
fb895c7
 
 
 
 
 
93da0bc
fb895c7
 
 
93da0bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Use the official Python 3.9 image
FROM python:3.9

# Create and set up a user
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"

# Set working directory
WORKDIR /app
RUN pip install opencv-python
# Copy and install dependencies
COPY --chown=user ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade pip \
    && pip install --no-cache-dir -r requirements.txt

# Copy application files to the container
COPY --chown=user . /app

# Expose the port and run the application
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]