sentiment-analysis / Dockerfile
rahim-khan-iitg's picture
Update Dockerfile
4eb20c8 verified
raw
history blame
456 Bytes
# Use the official Python image from Docker Hub
FROM python:3.10-slim
# Set the working directory
WORKDIR /app
# Copy the requirements file into the container
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
COPY .env /app/.env
# Copy the current directory contents into the container at /app
COPY . .
# Command to run the FastAPI app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]