Skip to content

Commit 58c4dcb

Browse files
committed
Rename published docker images
1 parent afc6469 commit 58c4dcb

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

.github/workflows/build-push-artifacts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
name: Build and push images
3636
runs-on: ubuntu-latest
3737
needs: changes
38-
# if: ${{ needs.changes.outputs.images == 'true' || github.ref_type == 'tag' }}
38+
if: ${{ needs.changes.outputs.images == 'true' || github.ref_type == 'tag' }}
3939
strategy:
4040
matrix:
4141
include:
42-
- component: text-chat
42+
- component: chat
4343
- component: image-analysis
4444
steps:
4545
- name: Check out the repository
@@ -56,7 +56,7 @@ jobs:
5656
id: image-meta
5757
uses: docker/metadata-action@v5
5858
with:
59-
images: ghcr.io/stackhpc/azimuth-llm-ui-${{ matrix.component }}
59+
images: ghcr.io/stackhpc/azimuth-llm-${{ matrix.component }}-ui
6060
# Produce the branch name or tag and the SHA as tags
6161
tags: |
6262
type=ref,event=branch

web-apps/text-chat/Dockerfile renamed to web-apps/chat/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.11-slim
22

3-
ARG DIR=text-chat
3+
ARG DIR=chat
44

55
COPY $DIR/requirements.txt requirements.txt
66
COPY utils utils
File renamed without changes.
File renamed without changes.
File renamed without changes.

web-apps/text-chat/requirements.txt renamed to web-apps/chat/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ openai
44
langchain
55
langchain_openai
66
pydantic
7-
-e ../utils
7+
../utils

web-apps/image-analysis/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ pillow
22
requests
33
gradio<5
44
gradio_client
5-
-e ../utils
65
pydantic
6+
../utils

0 commit comments

Comments
 (0)