ikoghoemmanuell's picture
Update Dockerfile
a245bef
raw
history blame
510 Bytes
# Use the official Python image as the base image
FROM python:3.9
# Set the working directory in the container
WORKDIR /code
# Copy the requirements.txt file to the container
COPY app/requirements.txt /code/requirements.txt
# Install the Python dependencies
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# copy all the files in the app folder
COPY app/ .
# Start the FastAPI app with Uvicorn when the container starts
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]