Merge pull request #43 from hwanny1128/feat/rag-function

feat: add rag ci/cd
This commit is contained in:
Daewoong Jeon 2025-10-29 23:39:30 +09:00 committed by GitHub
commit 3195b7d9f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install dependencies
COPY requirements.txt .
COPY rag/requirements.txt .
RUN pip install --no-cache-dir --user -r requirements.txt
# Run stage
@ -39,7 +39,7 @@ WORKDIR ${ARTIFACTORY_HOME}
COPY --from=builder /root/.local /home/${USERNAME}/.local
# Copy application code
COPY --chown=${USERNAME}:${USERNAME} . .
COPY --chown=${USERNAME}:${USERNAME} rag/ .
# Update PATH to include user's local bin
ENV PATH=/home/${USERNAME}/.local/bin:$PATH