Skip to content

Commit c40a1ec

Browse files
committed
Merge branch 'main' into deps-main
2 parents fb9d156 + d0fb145 commit c40a1ec

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/semantic-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
build-args: "dev=0"
102102
- name: mcp-server
103103
dockerfile: services/mcp-server/Dockerfile
104-
image: rag-mcp
104+
image: mcp-server
105105
build-args: "dev=0"
106106
- name: frontend
107107
dockerfile: services/frontend/apps/chat-app/Dockerfile

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Welcome to the STACKIT RAG Template! This is a basic example of how to use the R
77

88
## Features 🚀
99

10-
**Document Management**: Supports PDFs, DOCX, PPTX, XML, and Confluence documents.
10+
**Document Management**: Supports PDFs, DOCX, PPTX, XML, EPUB documents and websource via confluence as well as sitemaps.
1111

1212
**AI Integration**: Multiple LLM and embedder providers for flexibility.
1313

infrastructure/rag/templates/admin-backend/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
app: {{ .Values.adminBackend.name }}
1414
spec:
1515
securityContext:
16-
runAsUser: 65532
16+
runAsUser: 10001
1717
runAsNonRoot: true
1818
volumes:
1919
- name: config-volume

infrastructure/rag/templates/backend/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
app: {{ .Values.backend.name }}
1414
spec:
1515
securityContext:
16-
runAsUser: 65532
16+
runAsUser: 10001
1717
runAsNonRoot: true
1818
volumes:
1919
- name: config-volume

infrastructure/rag/templates/extractor/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
app: {{ .Values.extractor.name }}
1414
spec:
1515
securityContext:
16-
runAsUser: 65532
16+
runAsUser: 10001
1717
runAsNonRoot: true
1818
volumes:
1919
- name: config-volume

services/admin-backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN poetry config virtualenvs.create false && \
2929
FROM --platform=linux/amd64 python:3.13-bookworm
3030
ARG dev=0
3131

32-
RUN adduser --disabled-password --gecos "" --uid 65532 nonroot
32+
RUN adduser --disabled-password --gecos "" --uid 10001 nonroot
3333

3434
ENV POETRY_VIRTUALENVS_PATH=/app/services/admin-backend/.venv
3535
COPY --from=build --chown=nonroot:nonroot ${POETRY_VIRTUALENVS_PATH} ${POETRY_VIRTUALENVS_PATH}

services/document-extractor/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN poetry config virtualenvs.create false &&\
3333
FROM --platform=linux/amd64 python:3.13-bookworm
3434
ARG dev=0
3535

36-
RUN adduser --disabled-password --gecos "" --uid 65532 nonroot
36+
RUN adduser --disabled-password --gecos "" --uid 10001 nonroot
3737

3838
ENV POETRY_VIRTUALENVS_PATH=/app/services/document-extractor/.venv
3939
COPY --from=build --chown=nonroot:nonroot ${POETRY_VIRTUALENVS_PATH} ${POETRY_VIRTUALENVS_PATH}

services/mcp-server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN poetry config virtualenvs.create false &&\
2929
FROM --platform=linux/amd64 python:3.13.5-bookworm
3030
ARG dev=0
3131

32-
RUN adduser --disabled-password --gecos "" --uid 65532 nonroot
32+
RUN adduser --disabled-password --gecos "" --uid 10001 nonroot
3333

3434
ENV POETRY_VIRTUALENVS_PATH=/app/services/mcp-server/.venv
3535
COPY --from=build --chown=nonroot:nonroot ${POETRY_VIRTUALENVS_PATH} ${POETRY_VIRTUALENVS_PATH}

services/rag-backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN poetry config virtualenvs.create false &&\
3131
FROM --platform=linux/amd64 python:3.13-bookworm
3232
ARG dev=0
3333

34-
RUN adduser --disabled-password --gecos "" --uid 65532 nonroot
34+
RUN adduser --disabled-password --gecos "" --uid 10001 nonroot
3535

3636
ENV POETRY_VIRTUALENVS_PATH=/app/services/rag-backend/.venv
3737
COPY --from=build --chown=nonroot:nonroot ${POETRY_VIRTUALENVS_PATH} ${POETRY_VIRTUALENVS_PATH}

0 commit comments

Comments
 (0)