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
3 changes: 2 additions & 1 deletion app-backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ RUN useradd -m -s /bin/bash user && \
chown -R user /home/user/

WORKDIR /home/user/
RUN git clone https://github.com/opea-project/GenAIComps.git
# temporary pointing to v1.1 GenAIComps for Gateway dependency
RUN git clone https://github.com/opea-project/GenAIComps.git -b v1.1rc

WORKDIR /home/user/GenAIComps
RUN pip install --no-cache-dir --upgrade pip==24.3.1 setuptools==75.3.0 && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@ spec:
- name: studio-frontend
securityContext: {}
image: ${REGISTRY}/studio-frontend:${TAG}
imagePullPolicy: Always
ports:
- name: studio-frontend
containerPort: 8080
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@ spec:
- name: studio-frontend
securityContext: {}
image: ${REGISTRY}/studio-frontend:${TAG}
imagePullPolicy: Always
ports:
- name: studio-frontend
containerPort: 8080
Expand Down
3 changes: 2 additions & 1 deletion studio-backend/app/templates/app/app.manifest.aws.ecr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ spec:
seccompProfile:
type: RuntimeDefault
image: ${REGISTRY:-opea}/app-backend:${TAG:-latest}
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
volumeMounts:
- mountPath: /tmp
name: tmp
Expand Down Expand Up @@ -123,6 +123,7 @@ spec:
__UI_CONFIG_INFO_ENV_PLACEHOLDER__
securityContext: {}
image: ${REGISTRY:-opea}/app-frontend:${TAG:-latest}
imagePullPolicy: Always
ports:
- name: ui
containerPort: 80
Expand Down
3 changes: 2 additions & 1 deletion studio-backend/app/templates/app/app.manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ spec:
seccompProfile:
type: RuntimeDefault
image: __APP_BACKEND_IMAGE__
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
volumeMounts:
- mountPath: /tmp
name: tmp
Expand Down Expand Up @@ -112,6 +112,7 @@ spec:
__UI_CONFIG_INFO_ENV_PLACEHOLDER__
securityContext: {}
image: __APP_FRONTEND_IMAGE__
imagePullPolicy: Always
ports:
- name: ui
containerPort: 80
Expand Down
Loading