File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,9 @@ jobs:
109109 cache-to : type=gha,mode=max
110110 file : Dockerfile.nginx
111111 platforms : linux/amd64,linux/arm64
112- build-args : REGISTRY=${{ env.REGISTRY }}/${{ env.ORG }}/
112+ build-args : |
113+ REGISTRY=${{ env.REGISTRY }}/${{ env.ORG }}/
114+ TAG=main
113115
114116 - name : Build and push LLMStack playwright Docker image
115117 id : build-and-push-playwright
@@ -121,9 +123,8 @@ jobs:
121123 labels : ${{ steps.meta-playwright.outputs.labels }}
122124 cache-from : type=gha
123125 cache-to : type=gha,mode=max
124- file : Dockerfile
126+ file : playwright/ Dockerfile
125127 platforms : linux/amd64,linux/arm64
126- build-args : REGISTRY=${{ env.REGISTRY }}/${{ env.ORG }}/
127128
128129 - name : Sign the published LLMStack API Docker image
129130 if : ${{ github.event_name != 'pull_request' }}
Original file line number Diff line number Diff line change 11ARG REGISTRY
2+ ARG TAG
3+
24FROM ${ REGISTRY:-} llmstack-api:${ TAG:-latest} as builder
35FROM nginx:stable-alpine3.17 -slim
46
You can’t perform that action at this time.
0 commit comments