17 lines
325 B
Plaintext
17 lines
325 B
Plaintext
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# 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"]
|