File size: 561 Bytes
5ded781
 
d6df538
5ded781
 
d6df538
 
5ded781
 
05ed4d1
5ded781
 
d6df538
 
5ded781
 
d6df538
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM python:3.9

# Create a user with a home directory and specific UID
RUN useradd -m -u 1000 user
USER user

# Set the PATH environment variable
ENV PATH="/home/user/.local/bin:$PATH"

# Set the working directory
WORKDIR /app

# Copy requirements file and install dependencies
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt

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

# Define the default command
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]