Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infrastructure/rag/templates/admin-backend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
app: {{ .Values.adminBackend.name }}
spec:
securityContext:
runAsUser: 65532
runAsUser: 10001
runAsNonRoot: true
volumes:
- name: config-volume
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/rag/templates/backend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
app: {{ .Values.backend.name }}
spec:
securityContext:
runAsUser: 65532
runAsUser: 10001
runAsNonRoot: true
volumes:
- name: config-volume
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/rag/templates/extractor/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
app: {{ .Values.extractor.name }}
spec:
securityContext:
runAsUser: 65532
runAsUser: 10001
runAsNonRoot: true
volumes:
- name: config-volume
Expand Down
2 changes: 1 addition & 1 deletion services/admin-backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN poetry config virtualenvs.create false && \
FROM --platform=linux/amd64 python:3.13-bookworm
ARG dev=0

RUN adduser --disabled-password --gecos "" --uid 65532 nonroot
RUN adduser --disabled-password --gecos "" --uid 10001 nonroot

ENV POETRY_VIRTUALENVS_PATH=/app/services/admin-backend/.venv
COPY --from=build --chown=nonroot:nonroot ${POETRY_VIRTUALENVS_PATH} ${POETRY_VIRTUALENVS_PATH}
Expand Down
2 changes: 1 addition & 1 deletion services/document-extractor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN poetry config virtualenvs.create false &&\
FROM --platform=linux/amd64 python:3.13-bookworm
ARG dev=0

RUN adduser --disabled-password --gecos "" --uid 65532 nonroot
RUN adduser --disabled-password --gecos "" --uid 10001 nonroot

ENV POETRY_VIRTUALENVS_PATH=/app/services/document-extractor/.venv
COPY --from=build --chown=nonroot:nonroot ${POETRY_VIRTUALENVS_PATH} ${POETRY_VIRTUALENVS_PATH}
Expand Down
2 changes: 1 addition & 1 deletion services/mcp-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN poetry config virtualenvs.create false &&\
FROM --platform=linux/amd64 python:3.11.7-bookworm
ARG dev=0

RUN adduser --disabled-password --gecos "" --uid 65532 nonroot
RUN adduser --disabled-password --gecos "" --uid 10001 nonroot

ENV POETRY_VIRTUALENVS_PATH=/app/services/mcp-server/.venv
COPY --from=build --chown=nonroot:nonroot ${POETRY_VIRTUALENVS_PATH} ${POETRY_VIRTUALENVS_PATH}
Expand Down
2 changes: 1 addition & 1 deletion services/rag-backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN poetry config virtualenvs.create false &&\
FROM --platform=linux/amd64 python:3.13-bookworm
ARG dev=0

RUN adduser --disabled-password --gecos "" --uid 65532 nonroot
RUN adduser --disabled-password --gecos "" --uid 10001 nonroot

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