RAG-Agent / Dockerfile
AyushAggarwal's picture
Update Dockerfile
1093b68 verified
Raw
History Blame Contribute Delete
277 Bytes
FROM python:3.14-slim
# Install uv.
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
# Copy the application into the container.
COPY . /app
# Install the application dependencies.
WORKDIR /app
RUN uv sync --frozen --no-cache
RUN chmod +x start.sh
CMD ["./start.sh"]