LLMServer / Dockerfile
AurelioAguirre's picture
Fixed Dockerfile v2
2c7276d
raw
history blame
552 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 /code/app
COPY ./utils /code/utils
# Set environment variables
ENV PYTHONPATH=/app
ENV PYTHONUNBUFFERED=1
# Expose the port your application runs on (assuming 8002 from your config)
EXPOSE 7680
# Command to run the application
CMD ["python", "-m", "app.main"]