test01 / Dockerfile
Sam3838's picture
Update Dockerfile
d2c471e verified
raw
history blame contribute delete
455 Bytes
# Use official Python runtime as a parent image
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Copy requirements.txt and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY openai_wrapper.py .
# Expose port 8000 for the FastAPI app
EXPOSE 7860
# Command to run the app with uvicorn
CMD ["uvicorn", "openai_wrapper:app", "--host", "0.0.0.0", "--port", "7860"]