23 lines
486 B
Plaintext
23 lines
486 B
Plaintext
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy requirements first for better caching
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Create directories
|
|
RUN mkdir -p input output logs
|
|
|
|
# Copy the rest of the application
|
|
COPY . .
|
|
|
|
# Command to run the embedder
|
|
CMD ["python", "advanced_embedder.py"]
|