File size: 822 Bytes
5e5c1cb 4a90100 e4dc16a 5e5c1cb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Use an official Python runtime as a parent image
FROM python:3.12-slim
# Set the transformers cache to a writable directory
ENV TRANSFORMERS_CACHE=/app/.cache
# Create the cache directory and set proper permissions
RUN mkdir -p /app/.cache && chmod -R 777 /app/.cache
# Set the working directory in the container
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . .
# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt && \
pip install google-generativeai
# Make port 7860 available to the world outside this container
EXPOSE 7860
# Run uvicorn server using the environment port (defaults to 7860)
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|