Inference-API / Dockerfile
AurelioAguirre's picture
FIRST
47031d7
raw
history blame
490 Bytes
# Use Python 3.12 slim image as base
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Copy requirements first to leverage Docker cache
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY app/ ./main/
# Set environment variables
ENV PYTHONPATH=/app
ENV PYTHONUNBUFFERED=1
# Expose the port your application runs on.
EXPOSE 7680
# Command to run the application
CMD ["python", "-m", "app.main"]