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:
109
109
cache-to : type=gha,mode=max
110
110
file : Dockerfile.nginx
111
111
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
113
115
114
116
- name : Build and push LLMStack playwright Docker image
115
117
id : build-and-push-playwright
@@ -121,9 +123,8 @@ jobs:
121
123
labels : ${{ steps.meta-playwright.outputs.labels }}
122
124
cache-from : type=gha
123
125
cache-to : type=gha,mode=max
124
- file : Dockerfile
126
+ file : playwright/ Dockerfile
125
127
platforms : linux/amd64,linux/arm64
126
- build-args : REGISTRY=${{ env.REGISTRY }}/${{ env.ORG }}/
127
128
128
129
- name : Sign the published LLMStack API Docker image
129
130
if : ${{ github.event_name != 'pull_request' }}
Original file line number Diff line number Diff line change 1
1
ARG REGISTRY
2
+ ARG TAG
3
+
2
4
FROM ${REGISTRY:-}llmstack-api:${TAG:-latest} as builder
3
5
FROM nginx:stable-alpine3.17-slim
4
6
You can’t perform that action at this time.
0 commit comments