File size: 658 Bytes
5ebef9c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Use Python 3.9 as base image
FROM python:3.9

# Set the working directory inside the container to /code
WORKDIR /code

# Copy the requirements.txt from the FastAPI folder into the working directory in the container
COPY ./FastAPI/requirements.txt /code/requirements.txt

# Install the Python packages specified in requirements.txt without cache and upgrading them
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

# Copy the FastAPI application directory into the working directory
COPY ./FastAPI/app /code/app

# Set the command to run the application using Uvicorn
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]