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

fix: build option
This commit is contained in:
Daewoong Jeon 2025-10-30 12:23:11 +09:00 committed by GitHub
commit 1690f79967
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -48,10 +48,10 @@ jobs:
- name: Check out code - name: Check out code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set up Python 3.13 - name: Set up Python 3.11
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: '3.13' python-version: '3.11'
cache: 'pip' cache: 'pip'
cache-dependency-path: 'rag/requirements.txt' cache-dependency-path: 'rag/requirements.txt'

View File

@ -1,5 +1,5 @@
# Build stage # Build stage
FROM python:3.13-slim AS builder FROM python:3.11-slim AS builder
WORKDIR /app WORKDIR /app
@ -18,7 +18,7 @@ ENV PATH="/opt/venv/bin:$PATH"
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
# Run stage # Run stage
FROM python:3.13-slim FROM python:3.11-slim
ENV USERNAME=k8s ENV USERNAME=k8s
ENV ARTIFACTORY_HOME=/home/${USERNAME} ENV ARTIFACTORY_HOME=/home/${USERNAME}