21 lines
537 B
Docker
21 lines
537 B
Docker
# Use an official Python runtime as a parent image
|
|
FROM python:3.11-slim
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /app
|
|
|
|
# Copy the requirements file to the working directory
|
|
COPY requirements.txt .
|
|
|
|
# Install the required dependencies
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy the FastAPI app code to the container
|
|
COPY . .
|
|
|
|
# Expose the port on which the app will run
|
|
EXPOSE 8000
|
|
|
|
# Define the command to run the application using uvicorn
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|