toypdf / Dockerfile
Janar Ramalingam
first cut working version
51a7f02
raw
history blame
574 Bytes
# Use an official Python base image
FROM python:3.10-slim
# Set the working directory
WORKDIR /app
# Copy the requirements.txt file into the container
COPY requirements.txt .
# Install any needed packages specified in requirements.txt
RUN pip install --trusted-host pypi.python.org -r requirements.txt
# Copy the rest of the application code into the container
COPY api .
# Expose the port the app runs on
EXPOSE 8080
ENV OPENAI_API_KEY=zzz
ENV QDRANT_API_KEY=yyy
# Start the application using Uvicorn
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]