Skip to content

Commit 697187d

Browse files
committed
move container images and github actions path
Signed-off-by: Ryan Cook <[email protected]>
1 parent 79dc3df commit 697187d

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

.github/workflows/images.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
platforms: linux/amd64,linux/arm64
8080
cache-from: type=gha
8181
cache-to: type=gha,mode=max
82-
file: Containerfile
82+
file: src/Containerfile
8383

8484
- name: Generate artifact attestation
8585
uses: actions/attest-build-provenance@v1
@@ -99,7 +99,7 @@ jobs:
9999
platforms: linux/amd64,linux/arm64
100100
cache-from: type=gha
101101
cache-to: type=gha,mode=max
102-
file: Containerfile
102+
file: src/Containerfile
103103

104104
build_and_publish_pathservice_image:
105105
name: Push pathservice container image to GHCR and QUAY
@@ -163,7 +163,7 @@ jobs:
163163
platforms: linux/amd64,linux/arm64
164164
cache-from: type=gha
165165
cache-to: type=gha,mode=max
166-
file: Containerfile.ps
166+
file: pathservice/Containerfile
167167

168168
- name: Generate artifact attestation
169169
uses: actions/attest-build-provenance@v1
@@ -183,4 +183,4 @@ jobs:
183183
platforms: linux/amd64,linux/arm64
184184
cache-from: type=gha
185185
cache-to: type=gha,mode=max
186-
file: Containerfile.ps
186+
file: pathservice/Containerfile

Makefile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,15 @@ yaml-lint: ## Lint yaml files
4747
$(CMD_PREFIX) yamllint -c .yamllint.yaml deploy --strict
4848

4949
##@ Artifacts - Command to build and publish artifacts
50-
ui-image: Containerfile ## Build continaer image for the InstructLab UI
51-
$(ECHO_PREFIX) printf " %-12s Containerfile\n" "[docker]"
52-
$(CMD_PREFIX) docker build -f Containerfile -t ghcr.io/instructlab/ui/ui:$(TAG) .
50+
ui-image: src/Containerfile ## Build container image for the InstructLab UI
51+
$(ECHO_PREFIX) printf " %-12s src/Containerfile\n" "[docker]"
52+
$(CMD_PREFIX) docker build -f src/Containerfile -t ghcr.io/instructlab/ui/ui:$(TAG) .
5353
$(CMD_PREFIX) docker tag ghcr.io/instructlab/ui/ui:$(TAG) ghcr.io/instructlab/ui/ui:main
5454

55-
ps-image: Containerfile.ps ## Build continaer image for the pathservice
56-
$(ECHO_PREFIX) printf " %-12s Containerfile.ps\n" "[docker]"
57-
$(CMD_PREFIX) docker build -f Containerfile.ps -t ghcr.io/instructlab/ui/pathservice:$(TAG) .
55+
56+
ps-image: pathservice/Containerfile ## Build container image for the InstructLab PathService
57+
$(ECHO_PREFIX) printf " %-12s pathservice/Containerfile\n" "[docker]"
58+
$(CMD_PREFIX) docker build -f pathservice/Containerfile -t ghcr.io/instructlab/ui/pathservice:$(TAG) .
5859
$(CMD_PREFIX) docker tag ghcr.io/instructlab/ui/pathservice:$(TAG) ghcr.io/instructlab/ui/pathservice:main
5960

6061
##@ Local Dev - Local machine based deployment of the UI stack
File renamed without changes.

0 commit comments

Comments
 (0)