We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4429413 commit 39de249Copy full SHA for 39de249
.github/workflows/init_container.yaml
@@ -111,6 +111,8 @@ jobs:
111
112
- name: Build and push ${{ matrix.agents.name }} container
113
uses: docker/build-push-action@v4
114
+ env:
115
+ base_image_tag: alpine-3.20.0
116
with:
117
context: .
118
file: ./lightrun-init-agent/Dockerfile
@@ -119,6 +121,7 @@ jobs:
119
121
tags: ${{steps.set_docker_tags.outputs.DOCKER_TAGS}}
120
122
build-args: |
123
FILE=${{ matrix.agents.file }}
124
+ base_image_tag=$base_image_tag
125
126
- name: Slack Notification
127
if: always()
lightrun-init-agent/Dockerfile
@@ -1,5 +1,6 @@
1
-FROM alpine:latest
+ARG base_image_tag=alpine-3.20.0
2
3
+FROM lightruncom/prod-base:${base_image_tag}
4
ARG FILE
5
6
COPY lightrun-init-agent/$FILE /tmp/$FILE
0 commit comments